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

52 行
1017B

  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] RNAseqqc_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. mkdir -p /cromwell_root/tmp/rnaseq
  18. cp ${sep=" " read1_zip} ${sep=" " read2_zip} /cromwell_root/tmp/fastqc
  19. cp ${sep=" " txt1} ${sep=" " txt2} /cromwell_root/tmp/fastqscreen
  20. for i in ${sep=" " bamqc_zip}
  21. do
  22. tar -zxvf $i -C /cromwell_root/tmp/bamqc
  23. done
  24. for i in ${sep=" " RNAseqqc_zip}
  25. do
  26. tar -zxvf $i -C /cromwell_root/tmp/rnaqc
  27. done
  28. multiqc /cromwell_root/tmp/
  29. >>>
  30. runtime {
  31. docker:docker
  32. cluster:cluster_config
  33. systemDisk:"cloud_ssd 40"
  34. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  35. }
  36. output {
  37. File multiqc_html = "multiqc_report.html"
  38. Array[File] multiqc_txt = glob("multiqc_data/*")
  39. }
  40. }