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.

cp_bam.wdl 402B

1234567891011121314151617181920212223242526
  1. task cp_bam {
  2. File bam
  3. File bai
  4. String bamname = basename(bam,".bam")
  5. String docker
  6. String cluster_config
  7. String disk_size
  8. command <<<
  9. set -e -o pipefail
  10. cp ${bam} ${bamname}_tmp.bam
  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 tmp_bam = "${bamname}_tmp.bam"
  20. }
  21. }