-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
170 lines (170 loc) · 4.74 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "mrtrix3preproc",
"label": "MRtrix3: Preprocessing Pipeline",
"description": "mrtrix3preproc runs the MRtrix3 preprocessing pipeline. It uses FSL's topup when the optional inverse phase encoded data are provided, otherwise the pipeline uses FSL's eddy tool. The pipeline can also perform de-noising, reslicing, and alignment to an anatomical image. Required inputs are diffusion NIfTI, BVEC, BVAL, and Anatomical (ACPC aligned) NIfTI.",
"maintainer": "Garikoitz Lerma-Usabiaga <[email protected]>",
"author": "MRtrix, FSL, and Brain-Life teams.",
"url": "https://github.com/scitran-apps/mrtrix3preproc",
"source": "https://mrtrix.readthedocs.io/en/3.0_rc3/reference/scripts/dwipreproc.html#dwipreproc",
"license": "Other",
"cite": "Gear adapted from https://github.com/brain-life/app-mrtrix3-preproc. Ref: https://mrtrix.readthedocs.io/en/latest/reference/scripts/dwipreproc.html#references",
"version": "1.0.2",
"custom": {
"docker-image": "scitran-apps/mrtrix3preproc:1.0.2",
"flywheel": {
"suite": "Image Processing",
"classification": {
"species": [
"Human"
],
"organ": [
"Brain"
],
"therapeutic_area": [
"Neurology"
],
"modality": [
"MR"
],
"function": [
"Image Processing - Diffusion"
]
}
},
"gear-builder": {
"category": "analysis"
}
},
"config": {
"rpe": {
"description": "Specify if there are reverse phase encoded data. Options are 'none', 'header', 'pairs', 'all'. [default=none]",
"default": "none",
"type": "string"
},
"acqd": {
"description": "Acquisition phase encoding direction [default=PA]",
"default": "PA",
"type": "string"
},
"denoise": {
"description": "Denoise data using PCA [default=true]",
"default": true,
"type": "boolean"
},
"degibbs": {
"description": "Perform Gibbs ringing correction [default=true]",
"default": true,
"type": "boolean"
},
"eddy": {
"description": "Perform eddy current correction. If inverted phase encoding direction files are found, eddy will be done as part of topup. [default=true]",
"default": true,
"type": "boolean"
},
"bias": {
"description": "Compute bias correction with ANTs on dwi data [default=true]",
"default": true,
"type": "boolean"
},
"ricn": {
"description": "Perform Rician background noise removal [default=true]",
"default": true,
"type": "boolean"
},
"norm": {
"description": "Perform intensity normalization of dwi data [default=false]",
"default": false,
"type": "boolean"
},
"nval": {
"description": "Normalize the intensity of the FA white matter mask to this number [default=1000]",
"default": 1000,
"type": "number"
},
"acpc": {
"description": "Align dwi data with AC-PC anatomy [default=false]",
"default": false,
"type": "boolean"
},
"doreslice": {
"description": "Do reslicing [default=false]",
"default": false,
"type": "boolean",
"id": "-doreslice"
},
"reslice": {
"description": "Optional. By default reslicing is not done. If you want it done, set doreslice=true and set a number (e.g., 1) here to reslice the dwi data to this isotropic voxel size (in mm).",
"optional": true,
"type": "number"
}
},
"inputs": {
"DIFF": {
"description": "Diffusion NIfTI image.",
"base": "file",
"type": {
"enum": [
"nifti"
]
}
},
"BVAL": {
"description": "BVAL file.",
"base": "file",
"type": {
"enum": [
"bval"
]
}
},
"BVEC": {
"description": "BVEC file.",
"base": "file",
"type": {
"enum": [
"bvec"
]
}
},
"ANAT": {
"description": "Optional anatomical T1w NIfTI image. Required only if acpc=true",
"base": "file",
"optional": true,
"type": {
"enum": [
"nifti"
]
}
},
"RDIF": {
"description": "Optional reverse phase encoded (rpe) diffusion NIfTI image.",
"base": "file",
"optional": true,
"type": {
"enum": [
"nifti"
]
}
},
"RBVL": {
"description": "Optional reverse phase encoded (rpe) BVAL file.",
"base": "file",
"optional": true,
"type": {
"enum": [
"bval"
]
}
},
"RBVC": {
"description": "Optional reverse phase encoded (rpe) BVEC file.",
"base": "file",
"optional": true,
"type": {
"enum": [
"bvec"
]
}
}
}
}