niwrap-mrtrix 0.5.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of niwrap-mrtrix might be problematic. Click here for more details.

Files changed (119) hide show
  1. niwrap_mrtrix/mrtrix/__init__.py +130 -0
  2. niwrap_mrtrix/mrtrix/afdconnectivity.py +445 -0
  3. niwrap_mrtrix/mrtrix/amp2response.py +453 -0
  4. niwrap_mrtrix/mrtrix/amp2sh.py +656 -0
  5. niwrap_mrtrix/mrtrix/connectome2tck.py +470 -0
  6. niwrap_mrtrix/mrtrix/connectomeedit.py +338 -0
  7. niwrap_mrtrix/mrtrix/connectomestats.py +767 -0
  8. niwrap_mrtrix/mrtrix/dcmedit.py +440 -0
  9. niwrap_mrtrix/mrtrix/dcminfo.py +416 -0
  10. niwrap_mrtrix/mrtrix/dirflip.py +362 -0
  11. niwrap_mrtrix/mrtrix/dirgen.py +423 -0
  12. niwrap_mrtrix/mrtrix/dirmerge.py +365 -0
  13. niwrap_mrtrix/mrtrix/dirorder.py +347 -0
  14. niwrap_mrtrix/mrtrix/dirsplit.py +358 -0
  15. niwrap_mrtrix/mrtrix/dirstat.py +530 -0
  16. niwrap_mrtrix/mrtrix/dwi2adc.py +428 -0
  17. niwrap_mrtrix/mrtrix/dwi2fod.py +879 -0
  18. niwrap_mrtrix/mrtrix/dwi2mask.py +463 -0
  19. niwrap_mrtrix/mrtrix/dwi2response.py +1295 -0
  20. niwrap_mrtrix/mrtrix/dwi2tensor.py +587 -0
  21. niwrap_mrtrix/mrtrix/dwibiascorrect.py +467 -0
  22. niwrap_mrtrix/mrtrix/dwidenoise.py +478 -0
  23. niwrap_mrtrix/mrtrix/dwiextract.py +825 -0
  24. niwrap_mrtrix/mrtrix/dwigradcheck.py +534 -0
  25. niwrap_mrtrix/mrtrix/fixel2peaks.py +452 -0
  26. niwrap_mrtrix/mrtrix/fixel2sh.py +357 -0
  27. niwrap_mrtrix/mrtrix/fixel2tsf.py +357 -0
  28. niwrap_mrtrix/mrtrix/fixel2voxel.py +437 -0
  29. niwrap_mrtrix/mrtrix/fixelcfestats.py +893 -0
  30. niwrap_mrtrix/mrtrix/fixelconnectivity.py +391 -0
  31. niwrap_mrtrix/mrtrix/fixelconvert.py +588 -0
  32. niwrap_mrtrix/mrtrix/fixelcorrespondence.py +371 -0
  33. niwrap_mrtrix/mrtrix/fixelcrop.py +348 -0
  34. niwrap_mrtrix/mrtrix/fixelfilter.py +616 -0
  35. niwrap_mrtrix/mrtrix/fixelreorient.py +361 -0
  36. niwrap_mrtrix/mrtrix/fod2dec.py +469 -0
  37. niwrap_mrtrix/mrtrix/fod2fixel.py +530 -0
  38. niwrap_mrtrix/mrtrix/label2colour.py +351 -0
  39. niwrap_mrtrix/mrtrix/label2mesh.py +343 -0
  40. niwrap_mrtrix/mrtrix/labelconvert.py +377 -0
  41. niwrap_mrtrix/mrtrix/labelstats.py +344 -0
  42. niwrap_mrtrix/mrtrix/maskdump.py +336 -0
  43. niwrap_mrtrix/mrtrix/maskfilter.py +537 -0
  44. niwrap_mrtrix/mrtrix/mesh2voxel.py +348 -0
  45. niwrap_mrtrix/mrtrix/meshconvert.py +410 -0
  46. niwrap_mrtrix/mrtrix/meshfilter.py +370 -0
  47. niwrap_mrtrix/mrtrix/mraverageheader.py +396 -0
  48. niwrap_mrtrix/mrtrix/mrcalc.py +3047 -0
  49. niwrap_mrtrix/mrtrix/mrcat.py +382 -0
  50. niwrap_mrtrix/mrtrix/mrcentroid.py +344 -0
  51. niwrap_mrtrix/mrtrix/mrcheckerboardmask.py +363 -0
  52. niwrap_mrtrix/mrtrix/mrclusterstats.py +736 -0
  53. niwrap_mrtrix/mrtrix/mrcolour.py +401 -0
  54. niwrap_mrtrix/mrtrix/mrconvert.py +1423 -0
  55. niwrap_mrtrix/mrtrix/mrdegibbs.py +443 -0
  56. niwrap_mrtrix/mrtrix/mrdump.py +351 -0
  57. niwrap_mrtrix/mrtrix/mredit.py +546 -0
  58. niwrap_mrtrix/mrtrix/mrfilter.py +716 -0
  59. niwrap_mrtrix/mrtrix/mrgrid.py +819 -0
  60. niwrap_mrtrix/mrtrix/mrhistmatch.py +403 -0
  61. niwrap_mrtrix/mrtrix/mrhistogram.py +393 -0
  62. niwrap_mrtrix/mrtrix/mrinfo.py +990 -0
  63. niwrap_mrtrix/mrtrix/mrmath.py +413 -0
  64. niwrap_mrtrix/mrtrix/mrmetric.py +425 -0
  65. niwrap_mrtrix/mrtrix/mrregister.py +1676 -0
  66. niwrap_mrtrix/mrtrix/mrstats.py +427 -0
  67. niwrap_mrtrix/mrtrix/mrthreshold.py +549 -0
  68. niwrap_mrtrix/mrtrix/mrtransform.py +1061 -0
  69. niwrap_mrtrix/mrtrix/mtnormalise.py +596 -0
  70. niwrap_mrtrix/mrtrix/peaks2amp.py +334 -0
  71. niwrap_mrtrix/mrtrix/peaks2fixel.py +349 -0
  72. niwrap_mrtrix/mrtrix/responsemean.py +316 -0
  73. niwrap_mrtrix/mrtrix/sh2amp.py +640 -0
  74. niwrap_mrtrix/mrtrix/sh2peaks.py +505 -0
  75. niwrap_mrtrix/mrtrix/sh2power.py +353 -0
  76. niwrap_mrtrix/mrtrix/sh2response.py +394 -0
  77. niwrap_mrtrix/mrtrix/shbasis.py +373 -0
  78. niwrap_mrtrix/mrtrix/shconv.py +498 -0
  79. niwrap_mrtrix/mrtrix/tck2connectome.py +580 -0
  80. niwrap_mrtrix/mrtrix/tck2fixel.py +363 -0
  81. niwrap_mrtrix/mrtrix/tckconvert.py +580 -0
  82. niwrap_mrtrix/mrtrix/tckdfc.py +551 -0
  83. niwrap_mrtrix/mrtrix/tckedit.py +1003 -0
  84. niwrap_mrtrix/mrtrix/tckgen.py +1983 -0
  85. niwrap_mrtrix/mrtrix/tckglobal.py +758 -0
  86. niwrap_mrtrix/mrtrix/tckinfo.py +329 -0
  87. niwrap_mrtrix/mrtrix/tckmap.py +772 -0
  88. niwrap_mrtrix/mrtrix/tckresample.py +580 -0
  89. niwrap_mrtrix/mrtrix/tcksample.py +404 -0
  90. niwrap_mrtrix/mrtrix/tcksift.py +592 -0
  91. niwrap_mrtrix/mrtrix/tcksift2.py +730 -0
  92. niwrap_mrtrix/mrtrix/tckstats.py +441 -0
  93. niwrap_mrtrix/mrtrix/tcktransform.py +340 -0
  94. niwrap_mrtrix/mrtrix/tensor2metric.py +544 -0
  95. niwrap_mrtrix/mrtrix/transformcalc.py +344 -0
  96. niwrap_mrtrix/mrtrix/transformcompose.py +465 -0
  97. niwrap_mrtrix/mrtrix/transformconvert.py +346 -0
  98. niwrap_mrtrix/mrtrix/tsfdivide.py +340 -0
  99. niwrap_mrtrix/mrtrix/tsfinfo.py +344 -0
  100. niwrap_mrtrix/mrtrix/tsfmult.py +340 -0
  101. niwrap_mrtrix/mrtrix/tsfsmooth.py +347 -0
  102. niwrap_mrtrix/mrtrix/tsfthreshold.py +349 -0
  103. niwrap_mrtrix/mrtrix/tsfvalidate.py +328 -0
  104. niwrap_mrtrix/mrtrix/v_5tt2gmwmi.py +359 -0
  105. niwrap_mrtrix/mrtrix/v_5tt2vis.py +412 -0
  106. niwrap_mrtrix/mrtrix/v_5ttcheck.py +337 -0
  107. niwrap_mrtrix/mrtrix/v_5ttedit.py +420 -0
  108. niwrap_mrtrix/mrtrix/v_5ttgen.py +816 -0
  109. niwrap_mrtrix/mrtrix/vectorstats.py +585 -0
  110. niwrap_mrtrix/mrtrix/voxel2fixel.py +350 -0
  111. niwrap_mrtrix/mrtrix/voxel2mesh.py +376 -0
  112. niwrap_mrtrix/mrtrix/warp2metric.py +449 -0
  113. niwrap_mrtrix/mrtrix/warpconvert.py +411 -0
  114. niwrap_mrtrix/mrtrix/warpcorrect.py +368 -0
  115. niwrap_mrtrix/mrtrix/warpinit.py +356 -0
  116. niwrap_mrtrix/mrtrix/warpinvert.py +370 -0
  117. niwrap_mrtrix-0.5.0.dist-info/METADATA +8 -0
  118. niwrap_mrtrix-0.5.0.dist-info/RECORD +119 -0
  119. niwrap_mrtrix-0.5.0.dist-info/WHEEL +4 -0
@@ -0,0 +1,428 @@
1
+ # This file was auto generated by Styx.
2
+ # Do not edit this file directly.
3
+
4
+ import typing
5
+ import pathlib
6
+ from styxdefs import *
7
+
8
+ DWI2ADC_METADATA = Metadata(
9
+ id="1ddf7b2c6bfbca7b535b58b3a0e9ad2e95b300d3.boutiques",
10
+ name="dwi2adc",
11
+ package="mrtrix",
12
+ container_image_tag="mrtrix3/mrtrix3:3.0.4",
13
+ )
14
+
15
+
16
+ Dwi2adcFslgradParameters = typing.TypedDict('Dwi2adcFslgradParameters', {
17
+ "__STYX_TYPE__": typing.Literal["fslgrad"],
18
+ "bvecs": InputPathType,
19
+ "bvals": InputPathType,
20
+ })
21
+
22
+
23
+ Dwi2adcConfigParameters = typing.TypedDict('Dwi2adcConfigParameters', {
24
+ "__STYX_TYPE__": typing.Literal["config"],
25
+ "key": str,
26
+ "value": str,
27
+ })
28
+
29
+
30
+ Dwi2adcParameters = typing.TypedDict('Dwi2adcParameters', {
31
+ "__STYX_TYPE__": typing.Literal["dwi2adc"],
32
+ "grad": typing.NotRequired[InputPathType | None],
33
+ "fslgrad": typing.NotRequired[Dwi2adcFslgradParameters | None],
34
+ "info": bool,
35
+ "quiet": bool,
36
+ "debug": bool,
37
+ "force": bool,
38
+ "nthreads": typing.NotRequired[int | None],
39
+ "config": typing.NotRequired[list[Dwi2adcConfigParameters] | None],
40
+ "help": bool,
41
+ "version": bool,
42
+ "input": InputPathType,
43
+ "output": str,
44
+ })
45
+
46
+
47
+ def dyn_cargs(
48
+ t: str,
49
+ ) -> typing.Any:
50
+ """
51
+ Get build cargs function by command type.
52
+
53
+ Args:
54
+ t: Command type.
55
+ Returns:
56
+ Build cargs function.
57
+ """
58
+ return {
59
+ "dwi2adc": dwi2adc_cargs,
60
+ "fslgrad": dwi2adc_fslgrad_cargs,
61
+ "config": dwi2adc_config_cargs,
62
+ }.get(t)
63
+
64
+
65
+ def dyn_outputs(
66
+ t: str,
67
+ ) -> typing.Any:
68
+ """
69
+ Get build outputs function by command type.
70
+
71
+ Args:
72
+ t: Command type.
73
+ Returns:
74
+ Build outputs function.
75
+ """
76
+ return {
77
+ "dwi2adc": dwi2adc_outputs,
78
+ }.get(t)
79
+
80
+
81
+ def dwi2adc_fslgrad_params(
82
+ bvecs: InputPathType,
83
+ bvals: InputPathType,
84
+ ) -> Dwi2adcFslgradParameters:
85
+ """
86
+ Build parameters.
87
+
88
+ Args:
89
+ bvecs: Provide the diffusion-weighted gradient scheme used in the\
90
+ acquisition in FSL bvecs/bvals format files. If a diffusion gradient\
91
+ scheme is present in the input image header, the data provided with\
92
+ this option will be instead used.
93
+ bvals: Provide the diffusion-weighted gradient scheme used in the\
94
+ acquisition in FSL bvecs/bvals format files. If a diffusion gradient\
95
+ scheme is present in the input image header, the data provided with\
96
+ this option will be instead used.
97
+ Returns:
98
+ Parameter dictionary
99
+ """
100
+ params = {
101
+ "__STYXTYPE__": "fslgrad",
102
+ "bvecs": bvecs,
103
+ "bvals": bvals,
104
+ }
105
+ return params
106
+
107
+
108
+ def dwi2adc_fslgrad_cargs(
109
+ params: Dwi2adcFslgradParameters,
110
+ execution: Execution,
111
+ ) -> list[str]:
112
+ """
113
+ Build command-line arguments from parameters.
114
+
115
+ Args:
116
+ params: The parameters.
117
+ execution: The execution object for resolving input paths.
118
+ Returns:
119
+ Command-line arguments.
120
+ """
121
+ cargs = []
122
+ cargs.append("-fslgrad")
123
+ cargs.append(execution.input_file(params.get("bvecs")))
124
+ cargs.append(execution.input_file(params.get("bvals")))
125
+ return cargs
126
+
127
+
128
+ def dwi2adc_config_params(
129
+ key: str,
130
+ value: str,
131
+ ) -> Dwi2adcConfigParameters:
132
+ """
133
+ Build parameters.
134
+
135
+ Args:
136
+ key: temporarily set the value of an MRtrix config file entry.
137
+ value: temporarily set the value of an MRtrix config file entry.
138
+ Returns:
139
+ Parameter dictionary
140
+ """
141
+ params = {
142
+ "__STYXTYPE__": "config",
143
+ "key": key,
144
+ "value": value,
145
+ }
146
+ return params
147
+
148
+
149
+ def dwi2adc_config_cargs(
150
+ params: Dwi2adcConfigParameters,
151
+ execution: Execution,
152
+ ) -> list[str]:
153
+ """
154
+ Build command-line arguments from parameters.
155
+
156
+ Args:
157
+ params: The parameters.
158
+ execution: The execution object for resolving input paths.
159
+ Returns:
160
+ Command-line arguments.
161
+ """
162
+ cargs = []
163
+ cargs.append("-config")
164
+ cargs.append(params.get("key"))
165
+ cargs.append(params.get("value"))
166
+ return cargs
167
+
168
+
169
+ class Dwi2adcOutputs(typing.NamedTuple):
170
+ """
171
+ Output object returned when calling `dwi2adc(...)`.
172
+ """
173
+ root: OutputPathType
174
+ """Output root folder. This is the root folder for all outputs."""
175
+ output: OutputPathType
176
+ """the output image."""
177
+
178
+
179
+ def dwi2adc_params(
180
+ input_: InputPathType,
181
+ output: str,
182
+ grad: InputPathType | None = None,
183
+ fslgrad: Dwi2adcFslgradParameters | None = None,
184
+ info: bool = False,
185
+ quiet: bool = False,
186
+ debug: bool = False,
187
+ force: bool = False,
188
+ nthreads: int | None = None,
189
+ config: list[Dwi2adcConfigParameters] | None = None,
190
+ help_: bool = False,
191
+ version: bool = False,
192
+ ) -> Dwi2adcParameters:
193
+ """
194
+ Build parameters.
195
+
196
+ Args:
197
+ input_: the input image.
198
+ output: the output image.
199
+ grad: Provide the diffusion-weighted gradient scheme used in the\
200
+ acquisition in a text file. This should be supplied as a 4xN text file\
201
+ with each line is in the format [ X Y Z b ], where [ X Y Z ] describe\
202
+ the direction of the applied gradient, and b gives the b-value in units\
203
+ of s/mm^2. If a diffusion gradient scheme is present in the input image\
204
+ header, the data provided with this option will be instead used.
205
+ fslgrad: Provide the diffusion-weighted gradient scheme used in the\
206
+ acquisition in FSL bvecs/bvals format files. If a diffusion gradient\
207
+ scheme is present in the input image header, the data provided with\
208
+ this option will be instead used.
209
+ info: display information messages.
210
+ quiet: do not display information messages or progress status;\
211
+ alternatively, this can be achieved by setting the MRTRIX_QUIET\
212
+ environment variable to a non-empty string.
213
+ debug: display debugging messages.
214
+ force: force overwrite of output files (caution: using the same file as\
215
+ input and output might cause unexpected behaviour).
216
+ nthreads: use this number of threads in multi-threaded applications\
217
+ (set to 0 to disable multi-threading).
218
+ config: temporarily set the value of an MRtrix config file entry.
219
+ help_: display this information page and exit.
220
+ version: display version information and exit.
221
+ Returns:
222
+ Parameter dictionary
223
+ """
224
+ params = {
225
+ "__STYXTYPE__": "dwi2adc",
226
+ "info": info,
227
+ "quiet": quiet,
228
+ "debug": debug,
229
+ "force": force,
230
+ "help": help_,
231
+ "version": version,
232
+ "input": input_,
233
+ "output": output,
234
+ }
235
+ if grad is not None:
236
+ params["grad"] = grad
237
+ if fslgrad is not None:
238
+ params["fslgrad"] = fslgrad
239
+ if nthreads is not None:
240
+ params["nthreads"] = nthreads
241
+ if config is not None:
242
+ params["config"] = config
243
+ return params
244
+
245
+
246
+ def dwi2adc_cargs(
247
+ params: Dwi2adcParameters,
248
+ execution: Execution,
249
+ ) -> list[str]:
250
+ """
251
+ Build command-line arguments from parameters.
252
+
253
+ Args:
254
+ params: The parameters.
255
+ execution: The execution object for resolving input paths.
256
+ Returns:
257
+ Command-line arguments.
258
+ """
259
+ cargs = []
260
+ cargs.append("dwi2adc")
261
+ if params.get("grad") is not None:
262
+ cargs.extend([
263
+ "-grad",
264
+ execution.input_file(params.get("grad"))
265
+ ])
266
+ if params.get("fslgrad") is not None:
267
+ cargs.extend(dyn_cargs(params.get("fslgrad")["__STYXTYPE__"])(params.get("fslgrad"), execution))
268
+ if params.get("info"):
269
+ cargs.append("-info")
270
+ if params.get("quiet"):
271
+ cargs.append("-quiet")
272
+ if params.get("debug"):
273
+ cargs.append("-debug")
274
+ if params.get("force"):
275
+ cargs.append("-force")
276
+ if params.get("nthreads") is not None:
277
+ cargs.extend([
278
+ "-nthreads",
279
+ str(params.get("nthreads"))
280
+ ])
281
+ if params.get("config") is not None:
282
+ cargs.extend([a for c in [dyn_cargs(s["__STYXTYPE__"])(s, execution) for s in params.get("config")] for a in c])
283
+ if params.get("help"):
284
+ cargs.append("-help")
285
+ if params.get("version"):
286
+ cargs.append("-version")
287
+ cargs.append(execution.input_file(params.get("input")))
288
+ cargs.append(params.get("output"))
289
+ return cargs
290
+
291
+
292
+ def dwi2adc_outputs(
293
+ params: Dwi2adcParameters,
294
+ execution: Execution,
295
+ ) -> Dwi2adcOutputs:
296
+ """
297
+ Build outputs object containing output file paths and possibly stdout/stderr.
298
+
299
+ Args:
300
+ params: The parameters.
301
+ execution: The execution object for resolving input paths.
302
+ Returns:
303
+ Outputs object.
304
+ """
305
+ ret = Dwi2adcOutputs(
306
+ root=execution.output_file("."),
307
+ output=execution.output_file(params.get("output")),
308
+ )
309
+ return ret
310
+
311
+
312
+ def dwi2adc_execute(
313
+ params: Dwi2adcParameters,
314
+ execution: Execution,
315
+ ) -> Dwi2adcOutputs:
316
+ """
317
+ Convert mean dwi (trace-weighted) images to mean ADC maps.
318
+
319
+
320
+
321
+ References:
322
+
323
+ .
324
+
325
+ Author: MRTrix3 Developers
326
+
327
+ URL: https://www.mrtrix.org/
328
+
329
+ Args:
330
+ params: The parameters.
331
+ execution: The execution object.
332
+ Returns:
333
+ NamedTuple of outputs (described in `Dwi2adcOutputs`).
334
+ """
335
+ params = execution.params(params)
336
+ cargs = dwi2adc_cargs(params, execution)
337
+ ret = dwi2adc_outputs(params, execution)
338
+ execution.run(cargs)
339
+ return ret
340
+
341
+
342
+ def dwi2adc(
343
+ input_: InputPathType,
344
+ output: str,
345
+ grad: InputPathType | None = None,
346
+ fslgrad: Dwi2adcFslgradParameters | None = None,
347
+ info: bool = False,
348
+ quiet: bool = False,
349
+ debug: bool = False,
350
+ force: bool = False,
351
+ nthreads: int | None = None,
352
+ config: list[Dwi2adcConfigParameters] | None = None,
353
+ help_: bool = False,
354
+ version: bool = False,
355
+ runner: Runner | None = None,
356
+ ) -> Dwi2adcOutputs:
357
+ """
358
+ Convert mean dwi (trace-weighted) images to mean ADC maps.
359
+
360
+
361
+
362
+ References:
363
+
364
+ .
365
+
366
+ Author: MRTrix3 Developers
367
+
368
+ URL: https://www.mrtrix.org/
369
+
370
+ Args:
371
+ input_: the input image.
372
+ output: the output image.
373
+ grad: Provide the diffusion-weighted gradient scheme used in the\
374
+ acquisition in a text file. This should be supplied as a 4xN text file\
375
+ with each line is in the format [ X Y Z b ], where [ X Y Z ] describe\
376
+ the direction of the applied gradient, and b gives the b-value in units\
377
+ of s/mm^2. If a diffusion gradient scheme is present in the input image\
378
+ header, the data provided with this option will be instead used.
379
+ fslgrad: Provide the diffusion-weighted gradient scheme used in the\
380
+ acquisition in FSL bvecs/bvals format files. If a diffusion gradient\
381
+ scheme is present in the input image header, the data provided with\
382
+ this option will be instead used.
383
+ info: display information messages.
384
+ quiet: do not display information messages or progress status;\
385
+ alternatively, this can be achieved by setting the MRTRIX_QUIET\
386
+ environment variable to a non-empty string.
387
+ debug: display debugging messages.
388
+ force: force overwrite of output files (caution: using the same file as\
389
+ input and output might cause unexpected behaviour).
390
+ nthreads: use this number of threads in multi-threaded applications\
391
+ (set to 0 to disable multi-threading).
392
+ config: temporarily set the value of an MRtrix config file entry.
393
+ help_: display this information page and exit.
394
+ version: display version information and exit.
395
+ runner: Command runner.
396
+ Returns:
397
+ NamedTuple of outputs (described in `Dwi2adcOutputs`).
398
+ """
399
+ runner = runner or get_global_runner()
400
+ execution = runner.start_execution(DWI2ADC_METADATA)
401
+ params = dwi2adc_params(
402
+ grad=grad,
403
+ fslgrad=fslgrad,
404
+ info=info,
405
+ quiet=quiet,
406
+ debug=debug,
407
+ force=force,
408
+ nthreads=nthreads,
409
+ config=config,
410
+ help_=help_,
411
+ version=version,
412
+ input_=input_,
413
+ output=output,
414
+ )
415
+ return dwi2adc_execute(params, execution)
416
+
417
+
418
+ __all__ = [
419
+ "DWI2ADC_METADATA",
420
+ "Dwi2adcConfigParameters",
421
+ "Dwi2adcFslgradParameters",
422
+ "Dwi2adcOutputs",
423
+ "Dwi2adcParameters",
424
+ "dwi2adc",
425
+ "dwi2adc_config_params",
426
+ "dwi2adc_fslgrad_params",
427
+ "dwi2adc_params",
428
+ ]