-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
112 lines (112 loc) · 3.82 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
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
{
"name": "fsl-bet",
"label": "FSL: Brain Extraction Tool (BET2)",
"description": "Brain Extraction Tool (BET2) from FMRIB Software Library (FSL) v5.0. BET (Brain Extraction Tool) deletes non-brain tissue from an image of the whole head. It can also estimate the inner and outer skull surfaces, and outer scalp surface, if you have good quality T1 and T2 input images.",
"maintainer": "Michael Perry <[email protected]>",
"author": "Analysis Group, FMRIB, Oxford, UK.",
"url": "https://github.com/scitran-apps/fsl-bet",
"source": "http://fsl.fmrib.ox.ac.uk/fsl/fslwiki/BET",
"license": "Apache-2.0",
"version": "0.2.3",
"custom": {
"flywheel": {
"suite": "Image Processing",
"classification": {
"species": [
"Human"
],
"organ": [
"Brain"
],
"therapeutic_area": [
"Neurology"
],
"modality": [
"MR"
],
"function": [
"Image Processing - Segmentation"
]
}
},
"docker-image": "scitran/fsl-bet:0.2.3",
"gear-builder": {
"category": "analysis",
"image": "scitran/fsl-bet:0.2.3"
}
},
"config": {
"fractional_intensity_threshold": {
"description": "Fractional intensity threshold (0->1); default=0.5; smaller values give larger brain outline estimates. Changing Fractional intensity threshold from its default value of 0.5 will cause the overall segmented brain to become larger (<0.5) or smaller (>0.5). This threshold must lie between 0 and 1.",
"default": 0.5,
"minimum": 0,
"maximum": 1,
"type": "number",
"id": "-f"
},
"brain_surf_outline": {
"description": "Generate brain surface outline overlaid onto original image.",
"default": false,
"type": "boolean",
"id": "-o"
},
"binary_brain_mask": {
"description": "Generate binary brain mask.",
"default": false,
"type": "boolean",
"id": "-m"
},
"skull_image": {
"description": "Generate rough skull image.",
"default": false,
"type": "boolean",
"id": "-s"
},
"vertical_gradient_intensity_threshold": {
"description": "Vertical gradient in fractional intensity threshold (-1->1); default=0; positive values give larger brain outline at bottom, smaller at top.",
"default": 0,
"minimum": -1,
"maximum": 1,
"type": "number",
"id": "-g"
},
"apply_mask_thresholding": {
"description": "Apply thresholding to segmented brain image and mask.",
"default": false,
"type": "boolean",
"id": "-t"
},
"vtk_surface_mesh": {
"description": "Generates brain surface as mesh in .vtk format.",
"default": false,
"type": "boolean",
"id": "-e"
},
"function_option": {
"description": "Variations on default bet2 functionality (mutually exclusive). Valid options are: [-R, -S, -B, -Z, -F, -A, -A2]. { -R } robust brain centre estimation (iterates BET several times). { -S } eye & optic nerve cleanup (can be useful in SIENA). { -B } bias field & neck cleanup (can be useful in SIENA). { -Z } improve BET if FOV is very small in Z (by temporarily padding end slices). { -F } apply to 4D FMRI data (uses -f 0.3 and dilates brain mask slightly). { -A } run bet2 and then betsurf to get additional skull and scalp surfaces (includes registrations). { -A2 } as with -A, when also feeding in non-brain-extracted T2 (includes registrations).",
"default": "",
"type": "string",
"enum": [
"",
"-R",
"-S",
"-B",
"-Z",
"-F",
"-A",
"-A2"
]
}
},
"inputs": {
"nifti": {
"description": "Input NIfTI file for BET algorithm.",
"base": "file",
"type": {
"enum": [
"nifti"
]
}
}
}
}