X-Git-Url: https://git.arvados.org/arvados-tutorial.git/blobdiff_plain/89ac9b0dfb818c02b8fa1d6862820dcbdae14e26..f8190b9075da8df466cd1faa59840619e9233b7c:/WGS-processing/cwl/wgs-processing-wf.cwl diff --git a/WGS-processing/cwl/wgs-processing-wf.cwl b/WGS-processing/cwl/wgs-processing-wf.cwl index 0a4b9d2..f7d2d00 100644 --- a/WGS-processing/cwl/wgs-processing-wf.cwl +++ b/WGS-processing/cwl/wgs-processing-wf.cwl @@ -3,10 +3,10 @@ class: Workflow requirements: - class: SubworkflowFeatureRequirement + - class: ScatterFeatureRequirement inputs: - fastq1: File - fastq2: File + fastqdir: Directory reference: type: File secondaryFiles: @@ -29,65 +29,33 @@ inputs: tailhtml: File outputs: - qc-html: - type: File[] - outputSource: fastqc/out-html - qc-zip: - type: File[] - outputSource: fastqc/out-zip gvcf: - type: File - outputSource: haplotypecaller/gatheredgvcf + type: File[] + outputSource: bwamem-gatk-report/gvcf report: - type: File - outputSource: generate-report/report + type: File[] + outputSource: bwamem-gatk-report/report + steps: - fastqc: - run: fastqc.cwl - in: - fastq1: fastq1 - fastq2: fastq2 - out: [out-html, out-zip] - bwamem-samtools-view: - run: bwamem-samtools-view.cwl - in: - fastq1: fastq1 - fastq2: fastq2 - reference: reference - sample: sample - out: [bam] - samtools-sort: - run: samtools-sort.cwl - in: - bam: bwamem-samtools-view/bam - sample: sample - out: [sortedbam] - mark-duplicates: - run: mark-duplicates.cwl + getfastq: + run: ./helper/getfastq.cwl in: - bam: samtools-sort/sortedbam - out: [dupbam,dupmetrics] - samtools-index: - run: samtools-index.cwl - in: - bam: mark-duplicates/dupbam - out: [indexedbam] - haplotypecaller: - run: scatter-gatk-wf-with-interval.cwl + fastqdir: fastqdir + out: [fastq1, fastq2] + + bwamem-gatk-report: + run: ./helper/bwamem-gatk-report-wf.cwl + scatter: [fastq1, fastq2] + scatterMethod: dotproduct in: + fastq1: getfastq/fastq1 + fastq2: getfastq/fastq2 reference: reference - bam: samtools-index/indexedbam sample: sample + knownsites: knownsites scattercount: scattercount - knownsites1: knownsites - out: [gatheredgvcf] - generate-report: - run: report-wf.cwl - in: - gvcf: haplotypecaller/gatheredgvcf - samplename: sample clinvarvcf: clinvarvcf reportfunc: reportfunc headhtml: headhtml tailhtml: tailhtml - out: [report] + out: [qc-html,qc-zip,gvcf,report]