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

36 行
649B

  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: idx=idx, idx_prefix=idx_prefix, read_1P=read1, read_2P=read2
  13. }
  14. all samtools.samtools as samtools {
  15. input: sam = hisat2.sam
  16. }
  17. call stringtie.stringtie as stringtie {
  18. input: gtf = gtf, bam = samtools.out_bam
  19. }
  20. call ballgown.ballgown as ballgown {
  21. input: ballgown = stringtie.ballgown
  22. }
  23. }