File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 1109
1109
output : {}
1110
1110
tool : v1.0/initialwork-path.cwl
1111
1111
doc : Test that file path in $(inputs) for initialworkdir is in $(outdir).
1112
+
1113
+ - job : v1.0/count-lines6-job.json
1114
+ output :
1115
+ count_output : 34
1116
+ tool : v1.0/count-lines12-wf.cwl
1117
+ doc : |
1118
+ Test single step workflow with Scatter step and two data links connected to
1119
+ same input, flattened merge behavior. Workflow inputs are set as list
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env cwl-runner
2
+ class: Workflow
3
+ cwlVersion: v1.0
4
+ requirements :
5
+ - class: MultipleInputFeatureRequirement
6
+
7
+ inputs :
8
+ file1:
9
+ - type : array
10
+ items : File
11
+ file2:
12
+ - type : array
13
+ items : File
14
+
15
+ outputs :
16
+ count_output:
17
+ type : int
18
+ outputSource : step1/output
19
+
20
+ steps :
21
+ step1:
22
+ run : wc3-tool.cwl
23
+ in :
24
+ file1:
25
+ source : [file1, file2]
26
+ linkMerge : merge_flattened
27
+ out : [output]
You can’t perform that action at this time.
0 commit comments