Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/cwltool/tests/echo-position-expr.cwl @ 0:d30785e31577 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author | guerler |
---|---|
date | Fri, 31 Jul 2020 00:18:57 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d30785e31577 |
---|---|
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 |