-
Notifications
You must be signed in to change notification settings - Fork 0
/
service.json
76 lines (75 loc) · 2.3 KB
/
service.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
{
"name": "ALOHA",
"version": "1.0.0",
"keywords": [
"hippocampus",
"atrophy",
"dementia",
"brain",
"mtl"
],
"shortdesc": "Hippocampal atrophy rate from two serial images",
"longdesc": "ALOHA : submit after you have run ASHS-HarP on baseline MRI",
"citation": "https://www.ncbi.nlm.nih.gov/pubmed/25181316",
"url": "https://sites.google.com/view/ashs-dox/mri-data/ashs-pmc-atlas-requirements",
"tags": [
{
"name": "T1-MRI-BL",
"type": "MainImage",
"hint": "Baseline T1-MRI. This scan must be the main image in the workspace.",
"required": true
},
{
"name": "T1-MRI-FU",
"type": "OverlayImage",
"hint": "Followup T1-MRI. This scan must be an overlay image in the workspace.",
"required": true
},
{
"name": "T1-MRI-LSEG",
"type": "SegmentationLabel",
"hint": "Baseline left hippocampus segmentation",
"required": false
},
{
"name": "T1-MRI-RSEG",
"type": "SegmentationLabel",
"hint": "Baseline right hippocampus segmentation",
"required": false
},
{
"name": "AC",
"type": "PointLandmark",
"hint": "Anterior commissure point can be optionally specified to help align the MRI scan to the brain template.",
"required": false
},
{
"name": "PC",
"type": "PointLandmark",
"hint": "Posterior commissure point can be optionally specified to help align the MRI scan to the brain template.",
"required": false
}
],
"parameters": [
{
"name": "corr_mode",
"displayname" : "Correction Mode",
"hint" : "ASHS offers performs segmentation error correction based on a machine learning algorithm. The 'intensity and shape correction' mode is suitable when your data closely matches the intensity characteristics of the ASHS atlas (see paper for details). Otherwise , 'shape correction' is recommended. You may also choose to disable error correction.",
"type" : "choose_one",
"choices" : [
{
"name" : "none",
"displayname" : "No error correction"
},
{
"name" : "shape",
"displayname" : "Shape correction"
},
{
"name" : "intensity",
"displayname" : "Intensity correction"
}
]
}
]
}