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

1234567891011121314151617181920212223242526272829
  1. import "./tasks/hisat2.wdl" as hisat2
  2. import "./tasks/samtools.wdl" as samtools
  3. import "./tasks/stringtie.wdl" as stringtie
  4. workflow {{ project_name }} {
  5. File read1
  6. File read2
  7. File idx
  8. String idx_prefix
  9. File gtf
  10. call hisat2.hisat2 as hisat2 {
  11. input: idx=idx, idx_prefix=idx_prefix, read_1P=read1, read_2P=read2
  12. }
  13. call samtools.samtools as samtools {
  14. input: sam = hisat2.sam
  15. }
  16. call stringtie.stringtie as stringtie {
  17. input: gtf = gtf, bam = samtools.out_bam
  18. }
  19. }