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.

24 lines
450B

  1. task raw_depth {
  2. File raw_bam
  3. File raw_bam_idx
  4. String sample_id
  5. File regions
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. /opt/conda/bin/samtools depth -aa -b ${regions} ${raw_bam} > ${sample_id}.raw.depth
  11. >>>
  12. runtime {
  13. docker:docker
  14. cluster: cluster_config
  15. systemDisk: "cloud_ssd 40"
  16. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  17. }
  18. output {
  19. File bam_raw_depth = "${sample_id}.raw.depth"
  20. }
  21. }