File tree Expand file tree Collapse file tree 2 files changed +15
-31
lines changed
Expand file tree Collapse file tree 2 files changed +15
-31
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,7 @@ requirements:
88 coresMax : 2
99
1010inputs : []
11+ outputs : []
1112
12- outputs :
13- output:
14- type : stdout
13+ baseCommand : ["echo" , "Hello World" ]
1514
16- baseCommand : echo
17-
18- stdout : cores.txt
19-
20- arguments : [ $(runtime.cores) ]
Original file line number Diff line number Diff line change 11#!/usr/bin/env cwl-runner
2-
3- cwlVersion: v1.0
42class: Workflow
5- inputs :
6- inp: File
7- ex: string
3+ cwlVersion: v1.2
84
95requirements :
106 ResourceRequirement:
117 ramMin : 128
128 ramMax : 64
139
14- outputs :
15- classout:
16- type : File
17- outputSource : argument/classfile
10+ inputs : []
11+ outputs : []
1812
1913steps :
20- untar:
21- run : tar-param.cwl
22- in :
23- tarfile: inp
24- extractfile: ex
25- out : [example_out]
14+ hello_world:
2615 requirements :
2716 ResourceRequirement:
28- ramMin : 64
29- ramMax : 128
30-
31- argument:
32- run : arguments.cwl
33- in :
34- src: untar/example_out
35- out : [classfile]
17+ ramMin : 64
18+ ramMax : 128
19+ run :
20+ class: CommandLineTool
21+ baseCommand : [ "echo" , "Hello World" ]
22+ inputs : [ ]
23+ outputs : [ ]
24+ out : [ ]
25+ in : [ ]
You can’t perform that action at this time.
0 commit comments