Calculate the bed coverage of multiple BAM files before and after dedup
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 5 roky
před 5 roky
před 5 roky
před 5 roky
před 5 roky
před 5 roky
1234567891011121314151617181920212223242526
  1. task bedtools {
  2. Array[File] input_samples
  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 input_samples -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. }