|
1234567891011121314151617181920212223242526272829 |
- import "./tasks/fastqc.wdl" as fastqc
- import "./tasks/fastqscreen.wdl" as fastqscreen
-
- workflow {{ project_name }} {
- File screen_ref_dir
- File fastq_screen_conf
- File read1
- File read2
-
- call fastqc.fastqc as fastqc {
- input:
- read1=read1,
- read2=read2,
- cluster=cluster_config,
- docker=fastqc.docker
- }
-
- call fastqscreen.fastq_screen as fastqscreen {
- input:
- read1=read1,
- read2=read2,
- cluster=cluster_config,
- docker=fastqscreen.docker,
- screen_ref_dir=screen_ref_dir,
- fastq_screen_conf=fastq_screen_conf
- }
-
- }
-
|