Calculate the bed coverage of multiple BAM files before and after dedup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cp_bam.wdl 361B

1234567891011121314151617181920212223
  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. }