You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 line
547B

  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. cluster=cluster_config,
  13. docker=fastqc.docker
  14. }
  15. call fastqscreen.fastq_screen as fastqscreen {
  16. input:
  17. read1=read1,
  18. read2=read2,
  19. cluster=cluster_config,
  20. docker=fastqscreen.docker,
  21. screen_ref_dir=screen_ref_dir,
  22. fastq_screen_conf=fastq_screen_conf
  23. }
  24. }