-
Notifications
You must be signed in to change notification settings - Fork 3
/
rules.yaml
79 lines (63 loc) · 1.22 KB
/
rules.yaml
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
rulez:
version: 1
parser:
type: $graph
driver: cwl
onstage:
driver: cwl
stage_in:
connection_node: node_stage_in
if_scatter:
scatterMethod: dotproduct
input:
template:
overwrite: True
on_stage:
connection_node: on_stage
stage_out:
connection_node: node_stage_out
scatter: False
if_scatter:
scatterMethod: dotproduct
follow_node: node_metrics_out
output:
driver: cwl
name: '-'
type: $graph
cwl:
GlobalInput:
Directory: string
Directory[]: string[]
OptionalInput:
Directory: string?
Directory[]: string[]?
stage_in:
Directory?:
type: string?
Directory:
type: string?
Directory[]:
type: string[]
stage_out:
Directory:
type: Directory
Directory[]:
type: Directory[]
outputBindingResult:
command:
Directory:
outputBinding:
glob: .
type: Directory
Directory[]:
outputBinding:
glob: .
type: Directory[]
Directory?:
outputBinding:
glob: ${ if (inputs.input == null) {return null } else {return ".";} }
type: Directory?
stepOut:
type:
items: Directory
type: array