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.

workflow.wdl 619B

4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
1234567891011121314151617181920212223242526272829303132
  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. String fastqc.docker
  9. String fastqscreen.docker
  10. String cluster_config
  11. call fastqc.fastqc as fastqc {
  12. input:
  13. read1=read1,
  14. read2=read2,
  15. cluster=cluster_config,
  16. docker=fastqc.docker
  17. }
  18. call fastqscreen.fastq_screen as fastqscreen {
  19. input:
  20. read1=read1,
  21. read2=read2,
  22. cluster=cluster_config,
  23. docker=fastqscreen.docker,
  24. screen_ref_dir=screen_ref_dir,
  25. fastq_screen_conf=fastq_screen_conf
  26. }
  27. }