您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

50 行
894B

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