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

30 lines
732B

  1. import "./tasks/fastp.wdl" as fastp
  2. import "./tasks/hisat2.wdl" as hisat2
  3. import "./tasks/samtools.wdl" as samtools
  4. import "./tasks/stringtie.wdl" as stringtie
  5. import "./tasks/fastqc.wdl" as fastqc
  6. import "./tasks/fastqscreen.wdl" as fastqscreen
  7. import "./tasks/qualimapBAMqc.wdl" as qualimapBAMqc
  8. import "./tasks/qualimapRNAseq.wdl" as qualimapRNAseq
  9. import "./tasks/multiqc.wdl" as multiqc
  10. workflow {{ project_name }} {
  11. String stringtie_docker
  12. String stringtie_cluster
  13. String multiqc_cluster_config
  14. String multiqc_docker
  15. Int multiqc_disk_size
  16. Int trim_front1
  17. Int trim_tail1
  18. Int max_len1
  19. Int trim_front2
  20. Int trim_tail2
  21. Int max_len2
  22. Int disable_adapter_trimming
  23. Int length_required
  24. Int umi_len
  25. Int UMI
  26. }