Calculate the bed coverage of multiple BAM files before and after dedup
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

26 lines
419B

  1. task bedtools {
  2. Array[File] tmp_bam
  3. File bed_file
  4. String docker
  5. String cluster_config
  6. String disk_size
  7. command <<<
  8. set -e -o pipefail
  9. bedtools multicov ${tmp_bam} -bed ${bed_file} > revread_count.txt
  10. >>>
  11. runtime {
  12. docker:docker
  13. cluster:cluster_config
  14. systemDisk:"cloud_ssd 40"
  15. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  16. }
  17. output {
  18. File read_count = "revread_count.txt"
  19. }
  20. }