選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

52 行
926B

  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. String docker
  12. String cluster
  13. call hisat2.hisat2 as hisat2 {
  14. input:
  15. docker = hisat2_docker,
  16. cluster = hisat2_cluster,
  17. idx=idx,
  18. idx_prefix=idx_prefix,
  19. read_1P=read1,
  20. read_2P=read2
  21. }
  22. call samtools.samtools as samtools {
  23. input:
  24. docker = samtools_docker,
  25. cluster = samtools_cluster,
  26. sam = hisat2.sam
  27. }
  28. call stringtie.stringtie as stringtie {
  29. input:
  30. docker = stringtie_docker,
  31. cluster = stringtie_cluster,
  32. gtf = gtf,
  33. bam = samtools.out_bam
  34. }
  35. call ballgown.ballgown as ballgown {
  36. input:
  37. docker = ballgown_docker,
  38. cluster = ballgown_cluster,
  39. ballgown = stringtie.ballgown
  40. }
  41. }