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
|
cwlVersion: v1.2
$graph:
- class: CommandLineTool
id: first
inputs:
in:
type: Any
outputs:
out:
type: string
outputBinding:
glob: out.txt
loadContents: true
outputEval: $(self[0].contents)
baseCommand: [ echo, first ]
stdout: out.txt
- class: CommandLineTool
id: main
inputs:
in:
type: Any
inputBinding: {}
outputs:
out:
type: string
outputBinding:
glob: out.txt
loadContents: true
outputEval: $(self[0].contents)
baseCommand: echo
stdout: out.txt
|