comparison env/lib/python3.9/site-packages/cwltool/tests/wf/separate_without_prefix.cwl @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 #!/usr/bin/env cwl-runner
2 cwlVersion: v1.0
3 class: CommandLineTool
4 baseCommand: echo
5
6 inputs:
7 src:
8 type: string
9 default:
10 string
11 inputBinding:
12 position: 1
13 separate: false
14
15 stdout: output.txt
16
17 outputs:
18 output:
19 type: string
20 outputBinding:
21 glob: output.txt
22 loadContents: true
23 outputEval: $(self[0].contents)