You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

qualimap.wdl 544B

4 년 전
123456789101112131415161718192021222324252627
  1. task qualimap {
  2. File bam
  3. File bai
  4. String bamname = basename(bam,".bam")
  5. String docker
  6. String cluster_config
  7. String disk_size
  8. command <<<
  9. set -o pipefail
  10. set -e
  11. nt=$(nproc)
  12. /opt/qualimap/qualimap bamqc -bam ${bam} -outformat PDF:HTML -nt $nt -outdir ${bamname} --java-mem-size=60G
  13. tar -zcvf ${bamname}_qualimap.zip ${bamname}
  14. >>>
  15. runtime {
  16. docker:docker
  17. cluster:cluster_config
  18. systemDisk:"cloud_ssd 40"
  19. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  20. }
  21. output {
  22. File zip = "${bamname}_qualimap.zip"
  23. }
  24. }