Automated integrated analysis software for genomics data of the cancer patients.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

123456789101112131415161718192021222324252627282930313233
  1. task fastqc {
  2. String sample
  3. File read1
  4. File read2
  5. String docker
  6. String cluster_config
  7. String disk_size
  8. command <<<
  9. set -o pipefail
  10. set -e
  11. nt=$(nproc)
  12. ln -s ${read1} ${sample}_R1.fastq.gz
  13. ln -s ${read2} ${sample}_R2.fastq.gz
  14. fastqc -t $nt -o ./ ${sample}_R1.fastq.gz
  15. fastqc -t $nt -o ./ ${sample}_R2.fastq.gz
  16. >>>
  17. runtime {
  18. docker:docker
  19. cluster: cluster_config
  20. systemDisk: "cloud_ssd 40"
  21. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  22. }
  23. output {
  24. File read1_html="${sample}_R1_fastqc.html"
  25. File read1_zip="${sample}_R1_fastqc.zip"
  26. File read2_html="${sample}_R2_fastqc.html"
  27. File read2_zip="${sample}_R2_fastqc.zip"
  28. }
  29. }