Calculate the bed coverage of multiple BAM files before and after dedup
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

29 Zeilen
512B

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