Mercurial > repos > shellac > sam_consensus_v3
comparison env/lib/python3.9/site-packages/cwltool/tests/echo-position-expr.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 | |
3 class: CommandLineTool | |
4 cwlVersion: v1.0 | |
5 requirements: | |
6 InlineJavascriptRequirement: {} | |
7 inputs: | |
8 one: | |
9 type: int | |
10 inputBinding: | |
11 position: $(self) | |
12 two: | |
13 type: int | |
14 inputBinding: | |
15 valueFrom: sensation! | |
16 position: ${return self+1;} | |
17 arguments: | |
18 - position: ${return 2;} | |
19 valueFrom: singular | |
20 outputs: | |
21 out: | |
22 type: string | |
23 outputBinding: | |
24 glob: out.txt | |
25 loadContents: true | |
26 outputEval: $(self[0].contents) | |
27 baseCommand: echo | |
28 stdout: out.txt |