Automated integrated analysis software for genomics data of the cancer patients.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

fastqc.wdl 717B

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. }