-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoperator.json
More file actions
32 lines (32 loc) · 957 Bytes
/
operator.json
File metadata and controls
32 lines (32 loc) · 957 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
26
27
28
29
30
31
32
{
"name": "PCA Explorer",
"description": "Interactive PCA visualization for Tercen — scores, loadings, biplots, and variance plots.",
"isWebApp": true,
"isViewOnly": false,
"entryType": "app",
"serve": "build/web",
"tags": ["pca", "dimensionality-reduction"],
"authors": ["tercen"],
"urls": ["https://github.com/tercen/pca_flutter_operator"],
"properties": [
{
"kind": "EnumeratedProperty",
"name": "Scale Spots",
"defaultValue": "No",
"description": "If the spots should be scaled before PCA computation",
"values": ["No", "Yes"]
},
{
"kind": "DoubleProperty",
"name": "Number of Components",
"defaultValue": 5,
"description": "Number of principal components to compute"
},
{
"kind": "DoubleProperty",
"name": "Subtract component",
"defaultValue": 0,
"description": "Subtract a component before re-computing PCA (0 = none)"
}
]
}