Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/cwltool/tests/wf/wrong_cwlVersion.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 cwlVersion: v0.1 | |
3 class: Workflow | |
4 | |
5 label: "Hello World" | |
6 doc: "Outputs a message using echo" | |
7 | |
8 inputs: [] | |
9 | |
10 outputs: | |
11 response: | |
12 outputSource: step0/response | |
13 type: File | |
14 | |
15 steps: | |
16 step0: | |
17 run: | |
18 class: CommandLineTool | |
19 inputs: | |
20 message: | |
21 type: string | |
22 doc: "The message to print" | |
23 default: "Hello World" | |
24 inputBinding: | |
25 position: 1 | |
26 baseCommand: echo | |
27 stdout: response.txt | |
28 outputs: | |
29 response: | |
30 type: stdout | |
31 in: [] | |
32 out: [response] |