File tree Expand file tree Collapse file tree 5 files changed +37
-5
lines changed Expand file tree Collapse file tree 5 files changed +37
-5
lines changed Original file line number Diff line number Diff line change 287
287
tool : v1.0/env-wf2.cwl
288
288
doc : Test requirements override hints
289
289
290
+ - job : v1.0/env-job.json
291
+ output :
292
+ out :
293
+ class : File
294
+ checksum : sha1$cdc1e84968261d6a7575b5305945471f8be199b6
295
+ location : out
296
+ size : 9
297
+ tool : v1.0/env-wf3.cwl
298
+ doc : Test requirements on workflow steps
299
+
290
300
- job : v1.0/empty.json
291
301
output : {count_output: 16}
292
302
tool : v1.0/count-lines9-wf.cwl
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env cwl-runner
2
+ $namespaces:
3
+ ex: http://example.com/
2
4
cwlVersion: v1.0
3
5
class: CommandLineTool
4
6
doc : "Print the contents of a file to stdout using 'cat' running in a docker container. "
5
7
hints :
6
8
DockerRequirement:
7
9
dockerPull: "debian:wheezy"
8
- BlibberBlubberFakeRequirement:
10
+ ex: BlibberBlubberFakeRequirement:
9
11
fakeField: fraggleFroogle
10
12
inputs :
11
13
file1:
Original file line number Diff line number Diff line change @@ -11,8 +11,7 @@ outputs:
11
11
outputSource : step1/out
12
12
13
13
requirements :
14
- - class: SubworkflowFeatureRequirement
15
- - class: EnvVarRequirement
14
+ EnvVarRequirement:
16
15
envDef :
17
16
TEST_ENV: override
18
17
Original file line number Diff line number Diff line change @@ -11,8 +11,7 @@ outputs:
11
11
outputSource : step1/out
12
12
13
13
requirements :
14
- - class: SubworkflowFeatureRequirement
15
- - class: EnvVarRequirement
14
+ EnvVarRequirement:
16
15
envDef :
17
16
TEST_ENV: override
18
17
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env cwl-runner
2
+ class: Workflow
3
+ cwlVersion: v1.0
4
+
5
+ inputs :
6
+ in : string
7
+
8
+ outputs :
9
+ out :
10
+ type : File
11
+ outputSource : step1/out
12
+
13
+ steps :
14
+ step1:
15
+ run : env-tool2.cwl
16
+ requirements :
17
+ EnvVarRequirement:
18
+ envDef :
19
+ TEST_ENV: override
20
+ in :
21
+ in : in
22
+ out : [out]
You can’t perform that action at this time.
0 commit comments