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.

29 satır
656B

  1. task extract_multiqc {
  2. File fastqc_qualimap
  3. File fastqc
  4. File fastqscreen
  5. File hap
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. python /opt/extract_multiqc.py -fastqc_qualimap ${fastqc_qualimap} -fastqc ${fastqc} -fastqscreen ${fastqscreen} -hap ${hap}
  11. >>>
  12. runtime {
  13. docker:docker
  14. cluster:cluster_config
  15. systemDisk:"cloud_ssd 40"
  16. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  17. }
  18. output {
  19. File fastqc_result = "fastqc.final.result.txt"
  20. File fastqscreen_result = "fastqscreen.final.result.txt"
  21. File qualimap_result = "qualimap.final.result.txt"
  22. File hap_result = "benchmark.final.result.txt"
  23. }
  24. }