-
Notifications
You must be signed in to change notification settings - Fork 0
/
rt106SpecificAdaptorDefinitions.json
127 lines (127 loc) · 3.23 KB
/
rt106SpecificAdaptorDefinitions.json
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name" : "unet-cell-segmentation",
"version" : "v1_0_0",
"queue" : "unet-cell-segmentation--v1_0_0",
"parameters" : {
"slide" : {
"label" : "Slide Name",
"description" : "The slide being analyzed.",
"type" : "string",
"default" : ""
},
"region" : {
"label" : "Region",
"description" : "The region being analyzed.",
"type" : "string",
"default" : ""
},
"branch" : {
"label" : "Analysis Container",
"description" : "Tag for analysis results.",
"type" : "string",
"default" : "templateAnalysis"
},
"channel" : {
"label" : "Cell Channel",
"description" : "Channel to use for whole-cell segmentation.",
"type" : "string",
"default" : ""
},
"force" : {
"label" : "Force",
"description" : "Whether to force an overwrite",
"type" : "boolean",
"default" : false
},
"dapi_channel" : {
"label" : "Nuclei Channel",
"description" : "Nuclei channel to use for whole-cell segmentation.",
"type" : "string",
"default" : "DAPI"
},
"minLevel" : {
"label" : "Min Level",
"description" : "",
"type" : "number",
"default" : 4
},
"maxLevel" : {
"label" : "Max Level",
"description" : "",
"type" : "number",
"default" : 5
},
"patchSize" : {
"label" : "Patch Size",
"description" : "",
"type" : "number",
"default" : 400
},
"required" : ["slide", "region", "branch", "force", "dapi_channel", "patchSize", "minLevel", "maxLevel"]
},
"results" : {
"nucleiImage" : {
"label" : "Nuclei Image",
"description" : "Input URI to nucleus-stained image",
"type" : "pathologyImage",
"value" : "slide/region/source/DAPI"
},
"cellImage" : {
"label" : "Cell Image",
"description" : "Input URI to image stained for a cell (cytoplasm) marker",
"type" : "pathologyImage",
"value" : "slide/region/source/channel"
},
"nucleiMap" : {
"label" : "Nuclei Label Map",
"description" : "Label map showing nuclei regions",
"type" : "pathologyImage",
"value" : "slide/region/branch/NucSeg"
},
"cellMap" : {
"label" : "Cell Label Map",
"description" : "Label map showing cellular regions",
"type" : "pathologyImage",
"value" : "slide/region/branch/CellSeg"
}
},
"result_display" : {
"grid" : {
"shape" : [1,1],
"columns" : [1.0],
"rows" : [1.0]
},
"cells" : [
{
"column" : 0,
"row" : 0,
"cellType" : "pathologyImage",
"source" : "result",
"parameter" : "nucleiImage"
},
{
"column": 0,
"row": 0,
"cellType": "pathologyImage",
"source": "result",
"parameter": "nucleiMap",
"imageProcessing" : "toBinaryImage",
"properties" : {
"color" : "rgb(255,51,51)"
},
"controls": {
"opacity": "Mask Opacity: ",
"color": "Mask Color: "
}
}
]
},
"api" : {
"context" : "none"
},
"doc" : {
"short" : "A short bit of documentation",
"full" : "Full documentation"
},
"classification" : "segmentation/cell"
}