You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

workflow.wdl 926B

5 jaren geleden
5 jaren geleden
5 jaren geleden
5 jaren geleden
5 jaren geleden
5 jaren geleden
5 jaren geleden
5 jaren geleden
5 jaren geleden
5 jaren geleden
5 jaren geleden
5 jaren geleden
5 jaren geleden
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import "./tasks/hisat2.wdl" as hisat2
  2. import "./tasks/samtools.wdl" as samtools
  3. import "./tasks/stringtie.wdl" as stringtie
  4. import "./tasks/ballgown.wdl" as ballgown
  5. workflow {{ project_name }} {
  6. File read1
  7. File read2
  8. File idx
  9. String idx_prefix
  10. File gtf
  11. String docker
  12. String cluster
  13. call hisat2.hisat2 as hisat2 {
  14. input:
  15. docker = hisat2_docker,
  16. cluster = hisat2_cluster,
  17. idx=idx,
  18. idx_prefix=idx_prefix,
  19. read_1P=read1,
  20. read_2P=read2
  21. }
  22. call samtools.samtools as samtools {
  23. input:
  24. docker = samtools_docker,
  25. cluster = samtools_cluster,
  26. sam = hisat2.sam
  27. }
  28. call stringtie.stringtie as stringtie {
  29. input:
  30. docker = stringtie_docker,
  31. cluster = stringtie_cluster,
  32. gtf = gtf,
  33. bam = samtools.out_bam
  34. }
  35. call ballgown.ballgown as ballgown {
  36. input:
  37. docker = ballgown_docker,
  38. cluster = ballgown_cluster,
  39. ballgown = stringtie.ballgown
  40. }
  41. }