prepare junction bed and gtf with novel transcripts for PGA input
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

39 Zeilen
639B

  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 anno_gtf
  10. String sample_id
  11. call hisat2.hisat2 as hisat2 {
  12. input:
  13. idx=idx,
  14. idx_prefix=idx_prefix,
  15. read1=read1,
  16. read2=read2,
  17. sample_id=sample_id
  18. }
  19. call samtools.samtools as samtools {
  20. input:
  21. sample_id=sample_id,
  22. sam = hisat2.sam
  23. }
  24. call stringtie.stringtie as stringtie {
  25. input:
  26. anno_gtf = anno_gtf,
  27. bam = samtools.out_bam,
  28. sample_id=sample_id
  29. }
  30. }