Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

workflow.wdl 903B

5 år sedan
5 år sedan
5 år sedan
5 år sedan
5 år sedan
5 år sedan
5 år sedan
5 år sedan
5 år sedan
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. call hisat2.hisat2 as hisat2 {
  12. input:
  13. docker = hisat2_docker,
  14. cluster = hisat2_cluster,
  15. idx=idx,
  16. idx_prefix=idx_prefix,
  17. read_1P=read1,
  18. read_2P=read2
  19. }
  20. all samtools.samtools as samtools {
  21. input:
  22. docker = samtools_docker,
  23. cluster = samtools_cluster,
  24. sam = hisat2.sam
  25. }
  26. call stringtie.stringtie as stringtie {
  27. input:
  28. docker = stringtie_docker,
  29. cluster = stringtie_cluster,
  30. gtf = gtf,
  31. bam = samtools.out_bam
  32. }
  33. call ballgown.ballgown as ballgown {
  34. input:
  35. docker = ballgown_docker,
  36. cluster = ballgown_cluster,
  37. ballgown = stringtie.ballgown
  38. }
  39. }