Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/cwltool/tests/wf/formattest.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 $namespaces: | |
3 edam: "http://edamontology.org/" | |
4 $schemas: | |
5 - empty.ttl | |
6 cwlVersion: v1.0 | |
7 class: CommandLineTool | |
8 doc: "Reverse each line using the `rev` command" | |
9 inputs: | |
10 input: | |
11 type: File | |
12 inputBinding: {} | |
13 format: edam:format_2330 | |
14 | |
15 outputs: | |
16 output: | |
17 type: File | |
18 outputBinding: | |
19 glob: output.txt | |
20 format: edam:format_2330 | |
21 | |
22 baseCommand: rev | |
23 stdout: output.txt |