-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdescriptor.json
83 lines (82 loc) · 2.68 KB
/
descriptor.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
{
"name": "NucleiSegmentation3D-ImageJ",
"container-image": {
"image": "neubiaswg5/w_nucleisegmentation3d-imagej",
"type": "singularity"
},
"schema-version": "cytomine-0.1",
"description": "3D nuclei segmentation using 3D gaussian blur thresholding and 3D watershed using MorpholibJ plugin",
"command-line": "python wrapper.py CYTOMINE_HOST CYTOMINE_PUBLIC_KEY CYTOMINE_PRIVATE_KEY CYTOMINE_ID_PROJECT CYTOMINE_ID_SOFTWARE IJ_RADIUS IJ_MIN_THRESHOLD",
"inputs": [
{
"id": "cytomine_host",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine host",
"description": "Cytomine server hostname",
"type": "String",
"optional": false,
"set-by-server": true
},
{
"id": "cytomine_public_key",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine public key",
"description": "Cytomine public key",
"type": "String",
"optional": false,
"set-by-server": true
},
{
"id": "cytomine_private_key",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine private key",
"description": "Cytomine private key",
"type": "String",
"optional": false,
"set-by-server": true
},
{
"id": "cytomine_id_project",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine project id",
"description": "Cytomine project id",
"type": "String",
"optional": false,
"set-by-server": true
},
{
"id": "cytomine_id_software",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine software id",
"description": "Cytomine software id",
"type": "String",
"optional": false,
"set-by-server": true
},
{
"id": "ij_radius",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Radius",
"description": "Radius for Gaussian smoothing",
"type": "Number",
"default-value": 4,
"optional": true
},
{
"id": "ij_min_threshold",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Min Threshold",
"description": "Min Threshold ",
"type": "Number",
"default-value": 15,
"optional": true
}
]
}