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.

bedtools.wdl 481B

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