Calculate the bed coverage of multiple BAM files before and after dedup
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

26 行
443B

  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. cat ${sep=" " input_samples}|bedtools multicov -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. }