-
Notifications
You must be signed in to change notification settings - Fork 3
/
expr_tool.go
49 lines (36 loc) · 1.47 KB
/
expr_tool.go
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
package cwl
type ExpressionTool struct {
CWLVersion string `json:"cwlVersion,omitempty"`
Class string `json:"class,omitempty"`
ID string `json:"id,omitempty"`
Label string `json:"label,omitempty"`
Doc string `json:"doc,omitempty"`
Hints []Requirement `json:"hints,omitempty"`
Requirements []Requirement `json:"requirements,omitempty"`
Inputs []CommandInput `json:"inputs,omitempty"`
Outputs []CommandOutput `json:"outputs,omitempty"`
Expression Expression `json:"expression,omitempty"`
}
/*
type ExpressionToolInput struct {
ID string `json:"id,omitempty"`
Label string `json:"label,omitempty"`
Doc string `json:"doc,omitempty"`
Streamable bool `json:"streamable,omitempty"`
Default Any `json:"default,omitempty"`
Type []InputType `json:"type,omitempty"`
SecondaryFiles []Expression `json:"secondaryFiles,omitempty"`
Format []Expression `json:"format,omitempty"`
InputBinding *CommandLineBinding `json:"inputBinding,omitempty"`
}
type ExpressionToolOutput struct {
ID string `json:"id,omitempty"`
Label string `json:"label,omitempty"`
Doc string `json:"doc,omitempty"`
Streamable bool `json:"streamable,omitempty"`
Type []OutputType `json:"type,omitempty"`
SecondaryFiles []Expression `json:"secondaryFiles,omitempty"`
Format []Expression `json:"format,omitempty"`
OutputBinding *CommandOutputBinding `json:"outputBinding,omitempty"`
}
*/