Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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