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.

31 line
518B

  1. task multiqc {
  2. Array[File] summary
  3. String docker
  4. String cluster_config
  5. String disk_size
  6. command <<<
  7. set -o pipefail
  8. set -e
  9. mkdir -p /cromwell_root/tmp/benchmark
  10. cp ${sep=" " summary} /cromwell_root/tmp/benchmark
  11. multiqc /cromwell_root/tmp/
  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. }