Mercurial > repos > shellac > guppy_basecaller
diff env/lib/python3.7/site-packages/cwltool/tests/wf/revtool.cwl @ 5:9b1c78e6ba9c draft default tip
"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
| author | shellac |
|---|---|
| date | Mon, 01 Jun 2020 08:59:25 -0400 |
| parents | 79f47841a781 |
| children |
line wrap: on
line diff
--- a/env/lib/python3.7/site-packages/cwltool/tests/wf/revtool.cwl Thu May 14 16:47:39 2020 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,40 +0,0 @@ -#!/usr/bin/env cwl-runner -# -# Simplest example command line program wrapper for the Unix tool "rev". -# -class: CommandLineTool -cwlVersion: v1.0 -doc: "Reverse each line using the `rev` command" -$schemas: - - empty.ttl - -# The "inputs" array defines the structure of the input object that describes -# the inputs to the underlying program. Here, there is one input field -# defined that will be called "input" and will contain a "File" object. -# -# The input binding indicates that the input value should be turned into a -# command line argument. In this example inputBinding is an empty object, -# which indicates that the file name should be added to the command line at -# a default location. -inputs: - revtool_input: - type: File - inputBinding: {} - -# The "outputs" array defines the structure of the output object that -# describes the outputs of the underlying program. Here, there is one -# output field defined that will be called "output", must be a "File" type, -# and after the program executes, the output value will be the file -# output.txt in the designated output directory. -outputs: - revtool_output: - type: File - outputBinding: - glob: output.txt - -# The actual program to execute. -baseCommand: rev - -# Specify that the standard output stream must be redirected to a file called -# output.txt in the designated output directory. -stdout: output.txt
