Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

47 rindas
897B

  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. String docker
  8. String cluster_config
  9. String disk_size
  10. command <<<
  11. set -o pipefail
  12. set -e
  13. mkdir -p /cromwell_root/tmp/fastqc
  14. mkdir -p /cromwell_root/tmp/fastqscreen
  15. mkdir -p /cromwell_root/tmp/bamqc
  16. mkdir -p /cromwell_root/tmp/rnaseq
  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. multiqc /cromwell_root/tmp/
  24. >>>
  25. runtime {
  26. docker:docker
  27. cluster:cluster_config
  28. systemDisk:"cloud_ssd 40"
  29. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  30. }
  31. output {
  32. File multiqc_html = "multiqc_report.html"
  33. Array[File] multiqc_txt = glob("multiqc_data/*")
  34. }
  35. }