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
|
#!/usr/bin/env cwl-runner
class: Workflow
cwlVersion: v1.1
requirements:
- class: StepInputExpressionRequirement
- class: InlineJavascriptRequirement
inputs:
a: int
b: int
outputs:
val:
type: string
outputSource: step1/echo_out
steps:
step1:
run:
id: echo
class: CommandLineTool
inputs:
c:
type: int
inputBinding: {}
outputs:
echo_out:
type: string
outputBinding:
glob: "step1_out"
loadContents: true
outputEval: $(self[0].contents)
baseCommand: "echo"
stdout: step1_out
in:
a: a
b: b
c:
valueFrom: "$(inputs.a + inputs.b)"
out: [echo_out]
|