Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

26 lines
646B

  1. task fastqc {
  2. File read1
  3. File read2
  4. String docker
  5. command <<<
  6. set -o pipefail
  7. set -e
  8. nt=$(nproc)
  9. fastqc -t $nt -o ./ ${read1}
  10. fastqc -t $nt -o ./ ${read2}
  11. >>>
  12. runtime {
  13. docker:docker
  14. systemDisk:"cloud_ssd 40"
  15. cluster:cluster_config
  16. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  17. }
  18. output {
  19. File read1_html = sub(basename(read1), "\\.(fastq|fq)\\.gz$", "_fastqc.html")
  20. File read1_zip = sub(basename(read1), "\\.(fastq|fq)\\.gz$", "_fastqc.zip")
  21. File read2_html = sub(basename(read2), "\\.(fastq|fq)\\.gz$", "_fastqc.html")
  22. File read2_zip = sub(basename(read2), "\\.(fastq|fq)\\.gz$", "_fastqc.zip")
  23. }
  24. }