Calculate the bed coverage of multiple BAM files before and after dedup
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.

23 lines
361B

  1. task cp_bam {
  2. File bam
  3. String bamname = basename(bam,".bam")
  4. String cluster_config
  5. String disk_size
  6. command <<<
  7. set -e -o pipefail
  8. cp ${bam} ${bamname}_tmp.bam
  9. >>>
  10. runtime {
  11. cluster:cluster_config
  12. systemDisk:"cloud_ssd 40"
  13. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  14. }
  15. output {
  16. File tmp_bam = "${bamname}_tmp.bam"
  17. }
  18. }