室间质评
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

28 lines
624B

  1. task bamqc {
  2. File bam
  3. File bai
  4. String docker
  5. String cluster_config
  6. String disk_size
  7. command <<<
  8. set -o pipefail
  9. set -e
  10. nt=$(nproc)
  11. /opt/qualimap/qualimap bamqc -bam ${bam} -outformat PDF:HTML -nt $nt -outdir result --java-mem-size=32G
  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 genome_result = "result/genome_results.txt"
  21. File pdf = "result/report.pdf"
  22. Array[File] png = glob("reuslt/images_qualimapReport/*.png")
  23. Array[File] txt = glob("result/raw_data_qualimapReport/*.txt")
  24. }
  25. }