Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

30 lines
552B

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