-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathoperation.cwl
More file actions
25 lines (21 loc) · 639 Bytes
/
operation.cwl
File metadata and controls
25 lines (21 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# Example of an operation that has not yet been implemented
#
class: Operation
cwlVersion: v1.2.0-dev1
# an Operation is a placeholder for a CommandLineTool or
# Workflow to be added later, therefore its documentation
# are very important.
id: reverse
doc: "Reverse each line"
# The "inputs" array work the same as in CommandLineTool, but do
# not have any inputBinding
inputs:
input:
type: File
# The "outputs" array defines the structure of the output object, just like
# in CommandLineTool, but without outputBinding
outputs:
output:
type: File
# There are no "run" or "steps" command (FIXME: Should they be allowed?)