forked from douglowe/CW22_CWL_Novice_Exercises
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2_Multi_step_workflow.cwl
40 lines (33 loc) · 938 Bytes
/
2_Multi_step_workflow.cwl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
cwlVersion: v1.2
class: Workflow
requirements:
MultipleInputFeatureRequirement: {}
inputs:
rna_reads_forward:
type: File
format: https://edamontology.org/format_1930 # FASTQ
rna_reads_reverse:
type: File
format: https://edamontology.org/format_1930 # FASTQ
steps:
quality_control_forward:
run: bio-cwl-tools/fastqc/fastqc_2.cwl
in:
reads_file: <input file>
out: [<zipped output - check tool descriptor>]
quality_control_reverse:
run: bio-cwl-tools/fastqc/fastqc_2.cwl
in:
reads_file: <input file>
out: [<zipped output - check tool descriptor>]
combine_reports:
run: bio-cwl-tools/multiqc/multiqc.cwl
in:
qc_files_array:
- <step name>/<output variable>
- <step name>/<output variable>
out: [<html output - check tool descriptor>]
outputs:
combined_quality_report:
type: File
outputSource: <step name>/<output variable>