-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·59 lines (59 loc) · 1.55 KB
/
manifest.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
{
"name": "deepliif-predict",
"label": "DeepLIIF - IHC prediction",
"description": "This package provides IHC prediction using the DeepLIIF algorithm.",
"author": "D3b-TIRU",
"maintainer": "D3b-TIRU <flywheel@d3b.center>",
"url": "https://github.com/nadeemlab/DeepLIIF/tree/main",
"source": "https://github.com/d3b-center/deepliif-predict",
"version": "0.0.1-1",
"license": "Apache-2.0",
"custom": {
"gear-builder": {
"category": "analysis",
"image": "chop.flywheel.io/deepliif-predict:0.0.1-1"
},
"flywheel": {
"suite": "DeepLIIF"
}
},
"inputs": {
"image": {
"base": "file",
"description": "Digital slide image",
"optional": false
}
},
"config": {
"tile_size": {
"description": "Tile size (default: 512).",
"type": "integer",
"default":512
},
"wsi": {
"description": "Whether WSI image or not (default: true).",
"type": "boolean",
"default":true
},
"region_size": {
"description": "Region size for WSI files (default: 20000).",
"type": "integer",
"default":20000
},
"output_results_pickle": {
"description": "Whether to output the results.pkl file (default: False).",
"type": "boolean",
"default":false
}
},
"environment":{
"HOME":"/root",
"HOSTNAME":"0b633f948575",
"MESA_GL_VERSION_OVERRIDE":"3.2",
"PATH":"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"QT_GRAPHICSSYSTEM":"native",
"QT_X11_NO_MITSHM":"1",
"SHLVL":"1",
"TERM":"xterm"
}
}