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 585B

5 yıl önce
5 yıl önce
5 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
5 yıl önce
5 yıl önce
1234567891011121314151617181920212223242526272829
  1. task qualimap {
  2. File bam
  3. File bam_percent
  4. File gtf
  5. String bamname=basename(bam, ".sorted.bam")
  6. String docker
  7. String cluster
  8. String disk_size
  9. command <<<
  10. set -o pipefail
  11. set -e
  12. nt=$(nproc)
  13. /opt/qualimap/qualimap bamqc -bam ${bam} -outformat HTML -nt $nt -outdir ${bamname}_bamqc --java-mem-size=32G
  14. tar -zcf ${bamname}_bamqc_qualimap.tar.gz ${bamname}_bamqc
  15. >>>
  16. runtime {
  17. docker:docker
  18. cluster:cluster
  19. systemDisk:"cloud_ssd 40"
  20. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  21. }
  22. output {
  23. File bamqc_gz="${bamname}_bamqc_qualimap.tar.gz"
  24. }
  25. }