-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoperator.json
More file actions
36 lines (36 loc) · 1.24 KB
/
operator.json
File metadata and controls
36 lines (36 loc) · 1.24 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
{
"name": "Spatial Count Operator",
"description": "Counts the frequency of neighbour phenotypic clusters per cell (spatial count).",
"tags": ["spatial","scimap","neighbours"],
"authors": ["tercen"],
"urls": ["https://github.com/tercen/spatialcount_operator"],
"container":"ghcr.io/tercen/spatialcount_operator:0.1.3",
"properties": [
{
"kind": "EnumeratedProperty",
"isSingleSelection": true,
"name": "method",
"defaultValue": "radius",
"values": ["radius", "knn"],
"description": "Neighbourhood method: radius or knn"
},
{
"kind": "DoubleProperty",
"name": "radius",
"defaultValue": 80.0,
"description": "Radius (in same units as X/Y) used for radius-based neighbourhoods"
},
{
"kind": "DoubleProperty",
"name": "knn",
"defaultValue": 10,
"description": "Number of neighbours for knn-based neighbourhoods"
},
{
"kind": "DoubleProperty",
"name": "n_clusters",
"defaultValue": 8,
"description": "Number of neighbourhood clusters for k-means clustering"
}
]
}