File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -191,16 +191,16 @@ outputs: []
191
191
192
192
# # How do I connect a solo value to an input that expects an array of that type?
193
193
194
- Using [`MultipleInputFeatureRequirement`](https://www.commonwl.org/v1.0/Workflow.html#MultipleInputFeatureRequirement)
194
+ Add a [`MultipleInputFeatureRequirement`](https://www.commonwl.org/v1.0/Workflow.html#MultipleInputFeatureRequirement)
195
195
along with
196
- [`linkMerge : merge_nested`](https://www.commonwl.org/v1.0/Workflow.html#WorkflowStepInput)
196
+ [`linkMerge : merge_nested`](https://www.commonwl.org/v1.0/Workflow.html#WorkflowStepInput):
197
197
198
198
> merge_nested
199
199
>
200
200
> The input must be an array consisting of exactly one entry for each input link.
201
201
> If "merge_nested" is specified with a single link, the value from the link must be wrapped in a single-item list.
202
202
203
- Which means "create a list with exactly these sources as elements"
203
+ Which means "create a list with exactly these sources as elements".
204
204
205
205
Or in other words : if the destination is of type `File[]` (an array of `File`s)
206
206
and the source is a single `File` then add `MultipleInputFeatureRequirement` to the Workflow level `requirements`
@@ -424,7 +424,7 @@ inputs:
424
424
` ` `
425
425
426
426
427
- To fix this error, change `-` (hyphen) to `_` (underscore)
427
+ To fix this error, change `-` (hyphen) to `_` (underscore) :
428
428
429
429
` ` ` cwl
430
430
valueFrom: $(inputs.sample_input)
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ CWL implementation.
87
87
This is convenient for environments with multiple CWL runners.
88
88
89
89
The CWL community publishes a Python package with the name ` cwlref-runner ` that installs
90
- an alias for ` cwltool ` under the name ` cwl-runner `
90
+ an alias for ` cwltool ` under the name ` cwl-runner ` .
91
91
92
92
``` {code-block} console
93
93
:name: installing-cwlrunner-with-pip
You can’t perform that action at this time.
0 commit comments