您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728293031323334
  1. task multiqc {
  2. Array[File] bamqc_zip
  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/bamqc
  10. for i in ${sep=" " bamqc_zip}
  11. do
  12. tar -zxvf $i -C /cromwell_root/tmp/bamqc
  13. done
  14. multiqc /cromwell_root/tmp/
  15. >>>
  16. runtime {
  17. docker:docker
  18. cluster:cluster_config
  19. systemDisk:"cloud_ssd 40"
  20. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  21. }
  22. output {
  23. File multiqc_html = "multiqc_report.html"
  24. Array[File] multiqc_txt = glob("multiqc_data/*")
  25. }
  26. }