DNA-seq pipeline with Sentieon + Varscan.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

43 lines
901B

  1. task Realigner {
  2. File ref_dir
  3. File dbmills_dir
  4. String SENTIEON_INSTALL_DIR
  5. String sample
  6. String fasta
  7. File regions
  8. File Dedup_bam
  9. File Dedup_bam_index
  10. String db_mills
  11. String docker
  12. String cluster_config
  13. String disk_size
  14. command <<<
  15. set -o pipefail
  16. set -e
  17. export SENTIEON_LICENSE=192.168.0.55:8990
  18. nt=$(nproc)
  19. ${SENTIEON_INSTALL_DIR}/bin/sentieon driver -r ${ref_dir}/${fasta} -t $nt -i ${Dedup_bam} --algo Realigner -k ${dbmills_dir}/${db_mills} --interval_list ${regions} ${sample}.sorted.deduped.realigned.bam
  20. >>>
  21. runtime {
  22. docker:docker
  23. cluster: cluster_config
  24. systemDisk: "cloud_ssd 40"
  25. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  26. }
  27. output {
  28. File realigner_bam = "${sample}.sorted.deduped.realigned.bam"
  29. File realigner_bam_index = "${sample}.sorted.deduped.realigned.bam.bai"
  30. }
  31. }