从RNAseq数据中call突变
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

26 lines
488B

  1. task indexBam {
  2. File sorted_bam
  3. String sample
  4. String base = basename(sorted_bam,'.bam')
  5. String bam_index = base + ".bam.bai"
  6. String SAMdocker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. set -o pipefail
  11. set -e
  12. /opt/conda/bin/samtools index ${sorted_bam}
  13. >>>
  14. runtime {
  15. docker:SAMdocker
  16. cluster: cluster_config
  17. systemDisk: "cloud_ssd 40"
  18. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  19. }
  20. output {
  21. File sorted_bam_index = bam_index
  22. }
  23. }