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

50 行
972B

  1. task multiqc {
  2. Array[File] read1_zip
  3. Array[File] read2_zip
  4. Array[File] txt1
  5. Array[File] txt2
  6. Array[File] bamqc_zip
  7. Array[File] rnaseq_zip
  8. String docker
  9. String cluster_config
  10. String disk_size
  11. command <<<
  12. set -o pipefail
  13. set -e
  14. mkdir -p /cromwell_root/tmp/fastqc
  15. mkdir -p /cromwell_root/tmp/fastqscreen
  16. mkdir -p /cromwell_root/tmp/bamqc
  17. cp ${sep=" " read1_zip} ${sep=" " read2_zip} /cromwell_root/tmp/fastqc
  18. cp ${sep=" " txt1} ${sep=" " txt2} /cromwell_root/tmp/fastqscreen
  19. for i in ${sep=" " bamqc_zip}
  20. do
  21. tar -zxvf $i -C /cromwell_root/tmp/bamqc
  22. done
  23. for i in ${sep=" " rnaseq_zip}
  24. do
  25. tar -zxvf $i -C /cromwell_root/tmp/rnaseq
  26. done
  27. multiqc /cromwell_root/tmp/
  28. >>>
  29. runtime {
  30. docker:docker
  31. cluster:cluster_config
  32. systemDisk:"cloud_ssd 40"
  33. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  34. }
  35. output {
  36. File multiqc_html = "multiqc_report.html"
  37. Array[File] multiqc_txt = glob("multiqc_data/*")
  38. }
  39. }