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 String fastqc.docker String fastqscreen.docker String cluster_config 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 } }