Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

workflow.wdl 895B

5 lat temu
5 lat temu
5 lat temu
5 lat temu
5 lat temu
5 lat temu
5 lat temu
5 lat temu
5 lat temu
5 lat temu
5 lat temu
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. call 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. }