forked from common-workflow-language/cwl-v1.3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Operation.yml
94 lines (88 loc) · 2.38 KB
/
Operation.yml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
saladVersion: v1.3
$base: "https://w3id.org/cwl/cwl#"
$namespaces:
cwl: "https://w3id.org/cwl/cwl#"
$graph:
- name: OperationInputParameter
type: record
extends: InputParameter
docParent: "#Operation"
doc: |
Describe an input parameter of an operation.
fields:
- name: type
type:
- CWLType
- InputRecordSchema
- InputEnumSchema
- InputArraySchema
- string
- type: array
items:
- CWLType
- InputRecordSchema
- InputEnumSchema
- InputArraySchema
- string
jsonldPredicate:
"_id": "sld:type"
"_type": "@vocab"
refScope: 2
typeDSL: True
doc: |
Specify valid types of data that may be assigned to this parameter.
- name: OperationOutputParameter
type: record
extends: OutputParameter
docParent: "#Operation"
doc: |
Describe an output parameter of an operation.
fields:
- name: type
type:
- CWLType
- OutputRecordSchema
- OutputEnumSchema
- OutputArraySchema
- string
- type: array
items:
- CWLType
- OutputRecordSchema
- OutputEnumSchema
- OutputArraySchema
- string
jsonldPredicate:
"_id": "sld:type"
"_type": "@vocab"
refScope: 2
typeDSL: True
doc: |
Specify valid types of data that may be assigned to this parameter.
- type: record
name: Operation
extends: Process
documentRoot: true
specialize:
- specializeFrom: InputParameter
specializeTo: OperationInputParameter
- specializeFrom: OutputParameter
specializeTo: OperationOutputParameter
doc: |
This record describes an abstract operation. It is a potential
step of a workflow that has not yet been bound to a concrete
implementation. It specifies an input and output signature, but
does not provide enough information to be executed. An
implementation (or other tooling) may provide a means of binding
an Operation to a concrete process (such as Workflow,
CommandLineTool, or ExpressionTool) with a compatible signature.
fields:
- name: class
jsonldPredicate:
"_id": "@type"
"_type": "@vocab"
type:
type: enum
name: Operation_class
symbols:
- cwl:Operation