-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoperator.json
More file actions
101 lines (101 loc) · 3.17 KB
/
operator.json
File metadata and controls
101 lines (101 loc) · 3.17 KB
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
95
96
97
98
99
100
101
{
"name": "Template R Operator",
"description": "A template to build a Tercen operator in R.",
"tags": ["template"],
"authors": ["tercen"],
"urls": ["https://github.com/tercen/template-R-operator"],
"container":"ghcr.io/tercen/template-R-operator:2.0.0",
"properties": [
{
"kind": "DoubleProperty",
"name": "Property1",
"defaultValue": 42.0,
"description": "Example Double Property"
},
{
"kind": "StringProperty",
"name": "Property2",
"defaultValue": "42",
"description": "Example String Property"
},
{
"kind": "BooleanProperty",
"name": "Property3",
"defaultValue": true,
"description": "Example Boolean Property"
},
{
"kind": "EnumeratedProperty",
"isSingleSelection":true,
"name": "Property4",
"defaultValue": "element2",
"values": ["element1", "element2", "element3"],
"description": "Example Enumerated Property"
}
],
"operatorSpec": {
"kind": "OperatorSpec",
"ontologyUri": "https://tercen.com/_ontology/tercen",
"ontologyVersion": "0.0.1",
"inputSpecs": [
{
"kind": "CrosstabSpec",
"metaFactors": [
{
"kind": "MetaFactor",
"name": "Sample",
"type": "",
"description": "Sample identifiers",
"ontologyMapping": "sample",
"crosstabMapping": "row",
"cardinality": "1..n",
"factors": []
},
{
"kind": "MetaFactor",
"name": "Variable",
"type": "",
"description": "Variable identifiers",
"ontologyMapping": "variable",
"crosstabMapping": "column",
"cardinality": "1..n",
"factors": []
}
],
"axis": [
{
"kind": "AxisSpec",
"metaFactors": [
{
"kind": "MetaFactor",
"name": "Y-Axis Measurement",
"type": "numeric",
"description": "Measurement value, per cell",
"ontologyMapping": "measurement",
"crosstabMapping": "y",
"cardinality": "1",
"factors": []
}
]
},
{
"kind": "AxisSpec",
"metaFactors": [
{
"kind": "MetaFactor",
"name": "X-Axis Measurement (Optional)",
"type": "numeric",
"description": "Second measurement value, per cell (optional)",
"ontologyMapping": "measurement",
"crosstabMapping": "x",
"cardinality": "0..1",
"factors": []
}
]
}
]
}
],
"outputSpecs": []
}
}