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

28 lines
493B

  1. import "./tasks/fastqc.wdl" as fastqc
  2. import "./tasks/fastqscreen.wdl" as fastqscreen
  3. workflow {{ project_name }} {
  4. File screen_ref_dir
  5. File fastq_screen_conf
  6. File read1
  7. File read2
  8. call fastqc.fastqc as fastqc {
  9. input:
  10. read1=read1,
  11. read2=read2,
  12. docker=fastqc.docker
  13. }
  14. call fastqscreen.fastq_screen as fastqscreen {
  15. input:
  16. read1=read1,
  17. read2=read2,
  18. docker=fastqscreen.docker,
  19. screen_ref_dir=screen_ref_dir,
  20. fastq_screen_conf=fastq_screen_conf
  21. }
  22. }