-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmulti-input.cwl
46 lines (46 loc) · 1.38 KB
/
multi-input.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
41
42
43
44
45
46
class: Workflow
cwlVersion: v1.2
id: file:///Users/antoinegerardin/Documents/projects/polus-tools/multi-input.cwl
inputs:
- id: multi-input___0__echo1___message
type: string
- id: multi-input___1__echo2___message
type: string
outputs:
- id: multi-input___0__echo1___message_string
outputSource: 0__echo1/message_string
type: string
- id: multi-input___1__echo2___message_string
outputSource: 1__echo2/message_string
type: string
- id: multi-input___2__step__uppercase2_wic_compatible3___uppercase_message
outputSource: 2__step__uppercase2_wic_compatible3/uppercase_message
type: string[]
requirements:
- class: ScatterFeatureRequirement
steps:
- id: 0__echo1
in:
- id: message
source: multi-input___0__echo1___message
out:
- message_string
run: file:///Users/antoinegerardin/Documents/projects/polus-tools/tests/workflows/test_data/echo_string.cwl
- id: 1__echo2
in:
- id: message
source: multi-input___1__echo2___message
out:
- message_string
run: file:///Users/antoinegerardin/Documents/projects/polus-tools/tests/workflows/test_data/echo_string.cwl
- id: 2__step__uppercase2_wic_compatible3
in:
- id: message
source:
- 0__echo1/message_string
- 1__echo2/message_string
out:
- uppercase_message
run: file:///Users/antoinegerardin/Documents/projects/polus-tools/tests/workflows/test_data/uppercase2_wic_compatible3.cwl
scatter:
- message