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,370 @@
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
+ WARPINVERT_METADATA = Metadata(
9
+ id="34bd9d16c822603308c19a28bf1253af52fb2b1c.boutiques",
10
+ name="warpinvert",
11
+ package="mrtrix",
12
+ container_image_tag="mrtrix3/mrtrix3:3.0.4",
13
+ )
14
+
15
+
16
+ WarpinvertConfigParameters = typing.TypedDict('WarpinvertConfigParameters', {
17
+ "__STYX_TYPE__": typing.Literal["config"],
18
+ "key": str,
19
+ "value": str,
20
+ })
21
+
22
+
23
+ WarpinvertParameters = typing.TypedDict('WarpinvertParameters', {
24
+ "__STYX_TYPE__": typing.Literal["warpinvert"],
25
+ "template": typing.NotRequired[InputPathType | None],
26
+ "displacement": bool,
27
+ "info": bool,
28
+ "quiet": bool,
29
+ "debug": bool,
30
+ "force": bool,
31
+ "nthreads": typing.NotRequired[int | None],
32
+ "config": typing.NotRequired[list[WarpinvertConfigParameters] | None],
33
+ "help": bool,
34
+ "version": bool,
35
+ "in": InputPathType,
36
+ "out": str,
37
+ })
38
+
39
+
40
+ def dyn_cargs(
41
+ t: str,
42
+ ) -> typing.Any:
43
+ """
44
+ Get build cargs function by command type.
45
+
46
+ Args:
47
+ t: Command type.
48
+ Returns:
49
+ Build cargs function.
50
+ """
51
+ return {
52
+ "warpinvert": warpinvert_cargs,
53
+ "config": warpinvert_config_cargs,
54
+ }.get(t)
55
+
56
+
57
+ def dyn_outputs(
58
+ t: str,
59
+ ) -> typing.Any:
60
+ """
61
+ Get build outputs function by command type.
62
+
63
+ Args:
64
+ t: Command type.
65
+ Returns:
66
+ Build outputs function.
67
+ """
68
+ return {
69
+ "warpinvert": warpinvert_outputs,
70
+ }.get(t)
71
+
72
+
73
+ def warpinvert_config_params(
74
+ key: str,
75
+ value: str,
76
+ ) -> WarpinvertConfigParameters:
77
+ """
78
+ Build parameters.
79
+
80
+ Args:
81
+ key: temporarily set the value of an MRtrix config file entry.
82
+ value: temporarily set the value of an MRtrix config file entry.
83
+ Returns:
84
+ Parameter dictionary
85
+ """
86
+ params = {
87
+ "__STYXTYPE__": "config",
88
+ "key": key,
89
+ "value": value,
90
+ }
91
+ return params
92
+
93
+
94
+ def warpinvert_config_cargs(
95
+ params: WarpinvertConfigParameters,
96
+ execution: Execution,
97
+ ) -> list[str]:
98
+ """
99
+ Build command-line arguments from parameters.
100
+
101
+ Args:
102
+ params: The parameters.
103
+ execution: The execution object for resolving input paths.
104
+ Returns:
105
+ Command-line arguments.
106
+ """
107
+ cargs = []
108
+ cargs.append("-config")
109
+ cargs.append(params.get("key"))
110
+ cargs.append(params.get("value"))
111
+ return cargs
112
+
113
+
114
+ class WarpinvertOutputs(typing.NamedTuple):
115
+ """
116
+ Output object returned when calling `warpinvert(...)`.
117
+ """
118
+ root: OutputPathType
119
+ """Output root folder. This is the root folder for all outputs."""
120
+ out: OutputPathType
121
+ """the output warp image."""
122
+
123
+
124
+ def warpinvert_params(
125
+ in_: InputPathType,
126
+ out: str,
127
+ template: InputPathType | None = None,
128
+ displacement: bool = False,
129
+ info: bool = False,
130
+ quiet: bool = False,
131
+ debug: bool = False,
132
+ force: bool = False,
133
+ nthreads: int | None = None,
134
+ config: list[WarpinvertConfigParameters] | None = None,
135
+ help_: bool = False,
136
+ version: bool = False,
137
+ ) -> WarpinvertParameters:
138
+ """
139
+ Build parameters.
140
+
141
+ Args:
142
+ in_: the input warp image.
143
+ out: the output warp image.
144
+ template: define a template image grid for the output warp.
145
+ displacement: indicates that the input warp field is a displacement\
146
+ field; the output will also be a displacement field.
147
+ info: display information messages.
148
+ quiet: do not display information messages or progress status;\
149
+ alternatively, this can be achieved by setting the MRTRIX_QUIET\
150
+ environment variable to a non-empty string.
151
+ debug: display debugging messages.
152
+ force: force overwrite of output files (caution: using the same file as\
153
+ input and output might cause unexpected behaviour).
154
+ nthreads: use this number of threads in multi-threaded applications\
155
+ (set to 0 to disable multi-threading).
156
+ config: temporarily set the value of an MRtrix config file entry.
157
+ help_: display this information page and exit.
158
+ version: display version information and exit.
159
+ Returns:
160
+ Parameter dictionary
161
+ """
162
+ params = {
163
+ "__STYXTYPE__": "warpinvert",
164
+ "displacement": displacement,
165
+ "info": info,
166
+ "quiet": quiet,
167
+ "debug": debug,
168
+ "force": force,
169
+ "help": help_,
170
+ "version": version,
171
+ "in": in_,
172
+ "out": out,
173
+ }
174
+ if template is not None:
175
+ params["template"] = template
176
+ if nthreads is not None:
177
+ params["nthreads"] = nthreads
178
+ if config is not None:
179
+ params["config"] = config
180
+ return params
181
+
182
+
183
+ def warpinvert_cargs(
184
+ params: WarpinvertParameters,
185
+ execution: Execution,
186
+ ) -> list[str]:
187
+ """
188
+ Build command-line arguments from parameters.
189
+
190
+ Args:
191
+ params: The parameters.
192
+ execution: The execution object for resolving input paths.
193
+ Returns:
194
+ Command-line arguments.
195
+ """
196
+ cargs = []
197
+ cargs.append("warpinvert")
198
+ if params.get("template") is not None:
199
+ cargs.extend([
200
+ "-template",
201
+ execution.input_file(params.get("template"))
202
+ ])
203
+ if params.get("displacement"):
204
+ cargs.append("-displacement")
205
+ if params.get("info"):
206
+ cargs.append("-info")
207
+ if params.get("quiet"):
208
+ cargs.append("-quiet")
209
+ if params.get("debug"):
210
+ cargs.append("-debug")
211
+ if params.get("force"):
212
+ cargs.append("-force")
213
+ if params.get("nthreads") is not None:
214
+ cargs.extend([
215
+ "-nthreads",
216
+ str(params.get("nthreads"))
217
+ ])
218
+ if params.get("config") is not None:
219
+ cargs.extend([a for c in [dyn_cargs(s["__STYXTYPE__"])(s, execution) for s in params.get("config")] for a in c])
220
+ if params.get("help"):
221
+ cargs.append("-help")
222
+ if params.get("version"):
223
+ cargs.append("-version")
224
+ cargs.append(execution.input_file(params.get("in")))
225
+ cargs.append(params.get("out"))
226
+ return cargs
227
+
228
+
229
+ def warpinvert_outputs(
230
+ params: WarpinvertParameters,
231
+ execution: Execution,
232
+ ) -> WarpinvertOutputs:
233
+ """
234
+ Build outputs object containing output file paths and possibly stdout/stderr.
235
+
236
+ Args:
237
+ params: The parameters.
238
+ execution: The execution object for resolving input paths.
239
+ Returns:
240
+ Outputs object.
241
+ """
242
+ ret = WarpinvertOutputs(
243
+ root=execution.output_file("."),
244
+ out=execution.output_file(params.get("out")),
245
+ )
246
+ return ret
247
+
248
+
249
+ def warpinvert_execute(
250
+ params: WarpinvertParameters,
251
+ execution: Execution,
252
+ ) -> WarpinvertOutputs:
253
+ """
254
+ Invert a non-linear warp field.
255
+
256
+ By default, this command assumes that the input warp field is a deformation
257
+ field, i.e. each voxel stores the corresponding position in the other image
258
+ (in scanner space), and the calculated output warp image will also be a
259
+ deformation field. If the input warp field is instead a displacment field,
260
+ i.e. where each voxel stores an offset from which to sample the other image
261
+ (but still in scanner space), then the -displacement option should be used;
262
+ the output warp field will additionally be calculated as a displacement
263
+ field in this case.
264
+
265
+ References:
266
+
267
+ .
268
+
269
+ Author: MRTrix3 Developers
270
+
271
+ URL: https://www.mrtrix.org/
272
+
273
+ Args:
274
+ params: The parameters.
275
+ execution: The execution object.
276
+ Returns:
277
+ NamedTuple of outputs (described in `WarpinvertOutputs`).
278
+ """
279
+ params = execution.params(params)
280
+ cargs = warpinvert_cargs(params, execution)
281
+ ret = warpinvert_outputs(params, execution)
282
+ execution.run(cargs)
283
+ return ret
284
+
285
+
286
+ def warpinvert(
287
+ in_: InputPathType,
288
+ out: str,
289
+ template: InputPathType | None = None,
290
+ displacement: bool = False,
291
+ info: bool = False,
292
+ quiet: bool = False,
293
+ debug: bool = False,
294
+ force: bool = False,
295
+ nthreads: int | None = None,
296
+ config: list[WarpinvertConfigParameters] | None = None,
297
+ help_: bool = False,
298
+ version: bool = False,
299
+ runner: Runner | None = None,
300
+ ) -> WarpinvertOutputs:
301
+ """
302
+ Invert a non-linear warp field.
303
+
304
+ By default, this command assumes that the input warp field is a deformation
305
+ field, i.e. each voxel stores the corresponding position in the other image
306
+ (in scanner space), and the calculated output warp image will also be a
307
+ deformation field. If the input warp field is instead a displacment field,
308
+ i.e. where each voxel stores an offset from which to sample the other image
309
+ (but still in scanner space), then the -displacement option should be used;
310
+ the output warp field will additionally be calculated as a displacement
311
+ field in this case.
312
+
313
+ References:
314
+
315
+ .
316
+
317
+ Author: MRTrix3 Developers
318
+
319
+ URL: https://www.mrtrix.org/
320
+
321
+ Args:
322
+ in_: the input warp image.
323
+ out: the output warp image.
324
+ template: define a template image grid for the output warp.
325
+ displacement: indicates that the input warp field is a displacement\
326
+ field; the output will also be a displacement field.
327
+ info: display information messages.
328
+ quiet: do not display information messages or progress status;\
329
+ alternatively, this can be achieved by setting the MRTRIX_QUIET\
330
+ environment variable to a non-empty string.
331
+ debug: display debugging messages.
332
+ force: force overwrite of output files (caution: using the same file as\
333
+ input and output might cause unexpected behaviour).
334
+ nthreads: use this number of threads in multi-threaded applications\
335
+ (set to 0 to disable multi-threading).
336
+ config: temporarily set the value of an MRtrix config file entry.
337
+ help_: display this information page and exit.
338
+ version: display version information and exit.
339
+ runner: Command runner.
340
+ Returns:
341
+ NamedTuple of outputs (described in `WarpinvertOutputs`).
342
+ """
343
+ runner = runner or get_global_runner()
344
+ execution = runner.start_execution(WARPINVERT_METADATA)
345
+ params = warpinvert_params(
346
+ template=template,
347
+ displacement=displacement,
348
+ info=info,
349
+ quiet=quiet,
350
+ debug=debug,
351
+ force=force,
352
+ nthreads=nthreads,
353
+ config=config,
354
+ help_=help_,
355
+ version=version,
356
+ in_=in_,
357
+ out=out,
358
+ )
359
+ return warpinvert_execute(params, execution)
360
+
361
+
362
+ __all__ = [
363
+ "WARPINVERT_METADATA",
364
+ "WarpinvertConfigParameters",
365
+ "WarpinvertOutputs",
366
+ "WarpinvertParameters",
367
+ "warpinvert",
368
+ "warpinvert_config_params",
369
+ "warpinvert_params",
370
+ ]
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: niwrap_mrtrix
3
+ Version: 0.5.0
4
+ Summary: NiWrap wrappers for MRTrix3.
5
+ Author-email: CMI DAIR <dair@childmind.org>
6
+ License-Expression: LGPL-2.1
7
+ Requires-Python: >=3.10
8
+ Requires-Dist: styxdefs~=0.5.0
@@ -0,0 +1,119 @@
1
+ niwrap_mrtrix/mrtrix/__init__.py,sha256=s_b696Yu-xjbjJ9Ic6DIXyA4z7POFsRfabE7MPT_7_w,3512
2
+ niwrap_mrtrix/mrtrix/afdconnectivity.py,sha256=wSP_Svjo1tpJi-ziMvm2b4p3MnLlpXgnSASAPpgOlw0,15563
3
+ niwrap_mrtrix/mrtrix/amp2response.py,sha256=iXY4DcxdGUuS7lkT7CTzLBAjFG2T2i8vyrSkfOOkcBU,15298
4
+ niwrap_mrtrix/mrtrix/amp2sh.py,sha256=wu_HreGgz7KaeQGvMQ1IhwM_bCZ5Goo1QXVHWlpmCqA,22400
5
+ niwrap_mrtrix/mrtrix/connectome2tck.py,sha256=K1T_TN7c9_JF03wklY_7vZU_WI1qeD6EJYqT5uojIQw,15880
6
+ niwrap_mrtrix/mrtrix/connectomeedit.py,sha256=e5MZh0JmjoJ9EZlrqXmfYlXgyzMk03SGMxgBVDcQ50Q,9134
7
+ niwrap_mrtrix/mrtrix/connectomestats.py,sha256=Ph_OJ7u-3KFOmlaW0JoK6m-vmF5_SA0q7SHlunpH1ss,29636
8
+ niwrap_mrtrix/mrtrix/dcmedit.py,sha256=47hkXXpL6IOYwVsOIizIElABUXN2Zew5aej6B5-HCiE,12613
9
+ niwrap_mrtrix/mrtrix/dcminfo.py,sha256=U-DdlA2T3gEJ7NHJPSvnS1qpTiBHWOc1ZwZbCah5EHI,11186
10
+ niwrap_mrtrix/mrtrix/dirflip.py,sha256=NVhxTotOGGWU2v36R7A9K9HJttAt_WWwfAG0-Xfszqs,10009
11
+ niwrap_mrtrix/mrtrix/dirgen.py,sha256=6KIasy5-8bhyypdfN5n6U6xEdyEVyyf0xoLQGU1ltc0,13127
12
+ niwrap_mrtrix/mrtrix/dirmerge.py,sha256=K6JFjUKEzKTXIYoejwPoAfzOKMxmKkvoHkdD72r8h4g,10318
13
+ niwrap_mrtrix/mrtrix/dirorder.py,sha256=kQL_iCPTzNT67BdLco-Ss3q6s9DGhbFaY2LrC7jR2_w,9570
14
+ niwrap_mrtrix/mrtrix/dirsplit.py,sha256=tAMXlzDLNhzlAIfIljkHW7bYxAMMq00-zk8iThKYkRE,9757
15
+ niwrap_mrtrix/mrtrix/dirstat.py,sha256=sql65nGDDuFlYDlRkCCR9iFrA63YVQfajb2-i2owZfI,18272
16
+ niwrap_mrtrix/mrtrix/dwi2adc.py,sha256=1txBZ5KrIC1jK7DlvkRhsnq2E5-Pb8kARn6DI62GYC8,12581
17
+ niwrap_mrtrix/mrtrix/dwi2fod.py,sha256=OA3Co8OG_55NHui9MzkVNueFemmX5UWbzi85hzo60qo,31578
18
+ niwrap_mrtrix/mrtrix/dwi2mask.py,sha256=OmCpKyfVrYD8p7ncLT4q194Mxjr1MNQ35bwf0-NdqYo,14870
19
+ niwrap_mrtrix/mrtrix/dwi2response.py,sha256=GRaQwycA9fd8iZiGNXCjjDeDKO49J8_ygSmoeCOz9fw,41317
20
+ niwrap_mrtrix/mrtrix/dwi2tensor.py,sha256=qFMe8TOcs-WLSwz5-BHaMhEIv8do3VRnqGW-ugdJkEY,19666
21
+ niwrap_mrtrix/mrtrix/dwibiascorrect.py,sha256=cencG1qnMiU2nEOnWdRQsEY4jSiweQAT2QfqzDKjLUs,15417
22
+ niwrap_mrtrix/mrtrix/dwidenoise.py,sha256=Ck8JdD6RX9gknzmNX8leuuuJj2qL1ilWlbkggpee71Q,16524
23
+ niwrap_mrtrix/mrtrix/dwiextract.py,sha256=xlOjzOuCzC6s3leMEZb7BY2-bDh7epfGsJVwZROlm_g,28084
24
+ niwrap_mrtrix/mrtrix/dwigradcheck.py,sha256=48ZmnwvVQWmhkKJ-OR1r0SyfxF1Xc_37xmqRm8nuDX8,17899
25
+ niwrap_mrtrix/mrtrix/fixel2peaks.py,sha256=sl7188lrBMbqq_PKAqZDsTfBsSQM2cw3BeV_zuKyBLU,12482
26
+ niwrap_mrtrix/mrtrix/fixel2sh.py,sha256=K-90EHY3rOAJJOAWTFAEaZRTbKUDNle7St36ZIPvczM,10050
27
+ niwrap_mrtrix/mrtrix/fixel2tsf.py,sha256=Rg7A78ocqDMr-tL344qCz_ZzDddu625iT7htCW56tB4,9891
28
+ niwrap_mrtrix/mrtrix/fixel2voxel.py,sha256=PNfrHjaujjevhYB-_XVB7p3kXtuaFa265YCFaH5-SLY,14015
29
+ niwrap_mrtrix/mrtrix/fixelcfestats.py,sha256=EngFu5SEq7PWCxc87639PRaX4MFX-TMCGpu3RknNo54,34218
30
+ niwrap_mrtrix/mrtrix/fixelconnectivity.py,sha256=XGj1WSgUqy_e2SFE4BpVXg5-UjSQN7Qpckv7oOpfUFU,12059
31
+ niwrap_mrtrix/mrtrix/fixelconvert.py,sha256=rdR-LJJbdOUDe4TKz-RTALPWuamRGm_YFyyv0ezp_cY,16736
32
+ niwrap_mrtrix/mrtrix/fixelcorrespondence.py,sha256=JJQbGJOzFe6uvpkPADzbla7ebLuELA-q2frpgTPrsF0,11315
33
+ niwrap_mrtrix/mrtrix/fixelcrop.py,sha256=N7u6psrSEh0NOYSdQgo6itjZkZtYan5AAHtKaK6ARFs,10216
34
+ niwrap_mrtrix/mrtrix/fixelfilter.py,sha256=9-JwE8lf8N80nhZsaP_Vfre-TDNMYOogOE3g0tkaSfY,18367
35
+ niwrap_mrtrix/mrtrix/fixelreorient.py,sha256=AzVE6cbN91I3m0OV_Z32FyJ7oCBVWp155Q3Y6aC9YGE,10943
36
+ niwrap_mrtrix/mrtrix/fod2dec.py,sha256=0FClPilv7rACFLzCUo_717uXB-aBnDvzTEUpNxMLvu4,15819
37
+ niwrap_mrtrix/mrtrix/fod2fixel.py,sha256=ltdlzc8a9UGh0J14KrGolD-jePbGFVym5OAaZgPwbTU,18116
38
+ niwrap_mrtrix/mrtrix/label2colour.py,sha256=SKrVA-1q5S-05mD1N3mtfL4cFSwj-00181tjb6d6K5c,9987
39
+ niwrap_mrtrix/mrtrix/label2mesh.py,sha256=otRHf_lrt0-_A3oAnrkc6C1hAnQafZt823nxnYMb_Kk,9240
40
+ niwrap_mrtrix/mrtrix/labelconvert.py,sha256=Ttk8XDU4weckhBi2DSHcL3LLzEbyekolNgPjnD2nqkg,11283
41
+ niwrap_mrtrix/mrtrix/labelstats.py,sha256=6prrS4X171mTo30Cnqfg5f2MKvbwD5Wxqm8E98clx7k,9253
42
+ niwrap_mrtrix/mrtrix/maskdump.py,sha256=D_P0mGipCqY4Y6xW2LO6UacpfJgxNXguSCJSUtTmSTA,9039
43
+ niwrap_mrtrix/mrtrix/maskfilter.py,sha256=JZ3b002-3TPPdTJ878UVlMXFdkxeb_13ibIPXaNVEhc,16182
44
+ niwrap_mrtrix/mrtrix/mesh2voxel.py,sha256=Sj90o9laHsbgD4AovhF_fsnrqZLKgY4z5wTc6Ffozn8,9623
45
+ niwrap_mrtrix/mrtrix/meshconvert.py,sha256=oIllY_8keXeyNiAg_BQJWLhgdeQuW-TastxzvGN_Eew,11527
46
+ niwrap_mrtrix/mrtrix/meshfilter.py,sha256=b3Get2pCsAokC1eV39QTa0XtR06SOZXz7jHuV6laB5U,10477
47
+ niwrap_mrtrix/mrtrix/mraverageheader.py,sha256=7KYgIcGFUSuoQInzKXfzl2Fym60FYcO4VEcxHzKywHg,12041
48
+ niwrap_mrtrix/mrtrix/mrcalc.py,sha256=YdSxE8QqWTJ-6po4jfCSpLgt68-PNqDpsQBc6zliqRU,82095
49
+ niwrap_mrtrix/mrtrix/mrcat.py,sha256=_cvrAoFFXHOa0xxu4hh5Qy9IyR3t1B24I2TaX05mS3c,10924
50
+ niwrap_mrtrix/mrtrix/mrcentroid.py,sha256=oO-oPpEOM8q37zTaeuYJIb96qIcKekzcWt3gxy-iclI,9273
51
+ niwrap_mrtrix/mrtrix/mrcheckerboardmask.py,sha256=evHEMKxVmdn5z-DtXCMb_3VFGYbanQQ0S7IW5bV8VNQ,10114
52
+ niwrap_mrtrix/mrtrix/mrclusterstats.py,sha256=O7ARr-FQxSgiNFjwadbv98D2OEQQLgjrYqgGEv6AqYk,27713
53
+ niwrap_mrtrix/mrtrix/mrcolour.py,sha256=JJDTquTTiQLaw5H0zUL3lWRk6M9GeizGrNGJF6OpqPs,11622
54
+ niwrap_mrtrix/mrtrix/mrconvert.py,sha256=Wyl8s1UhDzMv55mtzRTA7vjqo4sI9T7LBFeB2cK-ytE,50358
55
+ niwrap_mrtrix/mrtrix/mrdegibbs.py,sha256=kZ15r0qa5djvQni9mLd7bb7gMoA9U1IhEX4-ttkz9Rs,14149
56
+ niwrap_mrtrix/mrtrix/mrdump.py,sha256=q-fQXizous4h8OG4BNujtj1-mSQohUN0_NSEnNoA41o,9432
57
+ niwrap_mrtrix/mrtrix/mredit.py,sha256=-Tlr8GkYY3Bn12W1u42yj6qlWl__3v3jPNxo5QsLxVs,15408
58
+ niwrap_mrtrix/mrtrix/mrfilter.py,sha256=C2j3SmLt2CISTvWTpf8xWadspfkTpiZsQ3DTpHL-8xg,24242
59
+ niwrap_mrtrix/mrtrix/mrgrid.py,sha256=i8WUNwJ1wn_xU5s-lV_m5mqy2df08myMdipqFmAeeUM,30810
60
+ niwrap_mrtrix/mrtrix/mrhistmatch.py,sha256=4ry5QRFtIDo0E6f0lk-xOlSg-kgrkCO1DDkOZWGGSr8,11879
61
+ niwrap_mrtrix/mrtrix/mrhistogram.py,sha256=Zg6mFbh3j9g3ZjkmIZHGtKm-FwdIuVbz2_02OFJ-u5U,11183
62
+ niwrap_mrtrix/mrtrix/mrinfo.py,sha256=S1WL-IPmiO3OdMLrpdlz9o_4hpXXfJXXRkHou-QUacY,34821
63
+ niwrap_mrtrix/mrtrix/mrmath.py,sha256=rsqc0IIIej8GlfPgqD0hjqBF1KJThbZphkBMvI71Ch4,12618
64
+ niwrap_mrtrix/mrtrix/mrmetric.py,sha256=TSIci4k7QgvMS76IdRojswZ1P977WxXVv5lXWDLzsGw,12592
65
+ niwrap_mrtrix/mrtrix/mrregister.py,sha256=6fY3aGmtyYBWvvzoe0MWCIqBFeuhIa3e6_Ja6HwAM2k,75082
66
+ niwrap_mrtrix/mrtrix/mrstats.py,sha256=TJvOVM66GAkT4q0Hkcpd-tif3dxBRj9G1--yZHu96zI,12520
67
+ niwrap_mrtrix/mrtrix/mrthreshold.py,sha256=5ScFOPAwVnKi_HS42J3WsbsC2kJMLKdj6KF-fZA_c_o,19045
68
+ niwrap_mrtrix/mrtrix/mrtransform.py,sha256=SnKHTajO9Jyh9CzyY0MMhkTaJd9MxfEnO1xr_9DI5q8,41749
69
+ niwrap_mrtrix/mrtrix/mtnormalise.py,sha256=-VO1kAGUjqPHEK8JPth8iPJkuUCstSnI7qSWBK2qwT4,21035
70
+ niwrap_mrtrix/mrtrix/peaks2amp.py,sha256=oowiEPlCy-qiqLUkxupWU_Kpt8x3ApVPo4jzgHF_N3k,8994
71
+ niwrap_mrtrix/mrtrix/peaks2fixel.py,sha256=3x0JnpJc3pOyXxQLzERV1LQ8_0yBX8n1o6vwh96B0u4,9582
72
+ niwrap_mrtrix/mrtrix/responsemean.py,sha256=9T48eLSFZ9qDYYx3-Yd_LEgZU9ofvCXKv02YnhQI3qg,9570
73
+ niwrap_mrtrix/mrtrix/sh2amp.py,sha256=_cIvWV7Dq54Nl4G1EJwc0NPmyVtsoiCM6d-60A0e85A,21632
74
+ niwrap_mrtrix/mrtrix/sh2peaks.py,sha256=PfDOVIMy8w2h1jelqOHFnXCZvc0WVvsdnsASxCEhymQ,15745
75
+ niwrap_mrtrix/mrtrix/sh2power.py,sha256=QZ0c2oTnFTMfeLUZIJfisJ6n96uTGwhgMHZ28Z6MumA,9900
76
+ niwrap_mrtrix/mrtrix/sh2response.py,sha256=W8-q3B4r8I3tGeD6WkrKYuso-hvkxwHV6cTIj9K7D90,11726
77
+ niwrap_mrtrix/mrtrix/shbasis.py,sha256=NJlHmG-c53z1ii0jhkM9Nu24FjxBzXYKMiNKvOuhb1w,11204
78
+ niwrap_mrtrix/mrtrix/shconv.py,sha256=9px9Q1d1twRL9oQOLUwtIiftAuiBpG2dkgsX4o-pjHo,15228
79
+ niwrap_mrtrix/mrtrix/tck2connectome.py,sha256=trYDNbY-tnoB-ICgDBM9dYd6hpetq7S2LpMYKbxCeRA,21833
80
+ niwrap_mrtrix/mrtrix/tck2fixel.py,sha256=kgFnNEW7ChfqL7rnzOdKT3ol5argLG7dvIU9Zc3AaFo,10159
81
+ niwrap_mrtrix/mrtrix/tckconvert.py,sha256=NsqjHh9vdlwiGUcolHP0M6zq8oIwUqvnf5MB6h9Rf28,17728
82
+ niwrap_mrtrix/mrtrix/tckdfc.py,sha256=n33C137-V9KFvbko9A1N5SCXUkE1g1t-umgSxvpy0mE,18266
83
+ niwrap_mrtrix/mrtrix/tckedit.py,sha256=jLrtL0t4Q7_kFnSZPg4ZU-yxjuE8HTalKmCuNJoFUdo,30508
84
+ niwrap_mrtrix/mrtrix/tckgen.py,sha256=XHYi3zuIKsUslsRCcInjXQ6SogpoK-EG3gdib0hLyQw,74944
85
+ niwrap_mrtrix/mrtrix/tckglobal.py,sha256=Q03pNKOSQ_vUwVSYy2zeathKpaR883VYF1zNDzRBOp0,26131
86
+ niwrap_mrtrix/mrtrix/tckinfo.py,sha256=NWaL3HeEbaV4KLurLHJXE6u_Vm4PlmMc9DCfRnvm9J4,8551
87
+ niwrap_mrtrix/mrtrix/tckmap.py,sha256=o5Cmmw11IHANKtCBt843Xex_38NzEzJtYCHFLdyDQSI,27261
88
+ niwrap_mrtrix/mrtrix/tckresample.py,sha256=FEGV12jxeO-5kmOMszJ11HRlNVIM2IX_EbvtZx113OE,18772
89
+ niwrap_mrtrix/mrtrix/tcksample.py,sha256=FVV72--ytm5ZFhpoQFYGICjY7JSq1zC7QZK7xbGkFyc,12547
90
+ niwrap_mrtrix/mrtrix/tcksift.py,sha256=SFZ3icJ1_E4IIqyFQDRMnAZ8Yrg-UiSmecjBFIB_R8Q,20918
91
+ niwrap_mrtrix/mrtrix/tcksift2.py,sha256=hZoQquIDHV7t25HrGz7W-RWoSF5-4lUHvdmSAg3FI_8,27836
92
+ niwrap_mrtrix/mrtrix/tckstats.py,sha256=VFJseFw0LjOJpYxCAwE_2FxjjCXs9RL_scia303HZKg,12702
93
+ niwrap_mrtrix/mrtrix/tcktransform.py,sha256=PPDVUU6MGbfb3ELJ9yzn91VSf0fcVtYRCKHfM_XzrJA,9154
94
+ niwrap_mrtrix/mrtrix/tensor2metric.py,sha256=2T5y4aVAa8Hxhn_tCpxbt5xtlWB-_OxluuReQSY-Slg,18029
95
+ niwrap_mrtrix/mrtrix/transformcalc.py,sha256=1lLp07jiZRrAYbmKnGlT6xk3cTMNxAjbkzZ3mP6qIKY,9554
96
+ niwrap_mrtrix/mrtrix/transformcompose.py,sha256=WJkNz2WeJjoWXdlULKwNoNTqhWV0OTEuDIEDC103fwc,14182
97
+ niwrap_mrtrix/mrtrix/transformconvert.py,sha256=5Dhw7Ji_MLjDjFM41-o4l-PL0g95EumLt2GqXbeDuvQ,9733
98
+ niwrap_mrtrix/mrtrix/tsfdivide.py,sha256=MBk-1JNqTXC9WuAXy-ZXxKlFB6xWFBFuQkGsDQ0hz8w,9025
99
+ niwrap_mrtrix/mrtrix/tsfinfo.py,sha256=jLuMFaiUCFmXBYLFj8fRLi97g0-MUpfoqgpwmUh0O8A,9139
100
+ niwrap_mrtrix/mrtrix/tsfmult.py,sha256=W7TfU9vVKKpO2K9_2JU1AQa6lmPlzzFdCI42sUyNt9Y,8951
101
+ niwrap_mrtrix/mrtrix/tsfsmooth.py,sha256=DAPJUVikxcaitBZGqXmZvSQ0T8NcsQ0psf9BguAqN2E,9338
102
+ niwrap_mrtrix/mrtrix/tsfthreshold.py,sha256=-0dVd43VZDBO3dyyfdKnwhASyk6Awihu20uGd98Jfsk,9306
103
+ niwrap_mrtrix/mrtrix/tsfvalidate.py,sha256=yMUa_CicsStX9yWzvoFPm9OH-VPFFoA-fc5ajwZ5KpI,8724
104
+ niwrap_mrtrix/mrtrix/v_5tt2gmwmi.py,sha256=7WQQmphprKIFYDJUPjPDZikBclSoeSZZBPq9vZw-3No,10360
105
+ niwrap_mrtrix/mrtrix/v_5tt2vis.py,sha256=W5FJeKivsK5ns78r3Zb8HRBlNgQV-0gpZwohKtTDZGA,11354
106
+ niwrap_mrtrix/mrtrix/v_5ttcheck.py,sha256=vHJpQvoXubwRzxfAatsLJ6crZ9OisaUKrsjDtW-TCIo,9037
107
+ niwrap_mrtrix/mrtrix/v_5ttedit.py,sha256=BMJoY5sHbf_2IbKT26LnfiiGqp9A1NmQr18PAA6PXV4,12012
108
+ niwrap_mrtrix/mrtrix/v_5ttgen.py,sha256=bpGXoBdhHRpaNAP8KTfjOK186GwunBBToIgdy6dTSKM,24673
109
+ niwrap_mrtrix/mrtrix/vectorstats.py,sha256=AxIEGCgGV7dwcmCTyWlchlCYWKyqjfYErcHyjtJnQys,20587
110
+ niwrap_mrtrix/mrtrix/voxel2fixel.py,sha256=nhAKSnjSUL_TAwAosmpEZ47QXzlcaJtt4uUeXTStf0I,10052
111
+ niwrap_mrtrix/mrtrix/voxel2mesh.py,sha256=0NUX_ck6sODDtYcmEtOqkjLQKlET1B_u_pcXAVpQb4s,10977
112
+ niwrap_mrtrix/mrtrix/warp2metric.py,sha256=ofD1It0VXFxFg-N94pehLtnDYSCfTAAPcsFiTzpATJk,14183
113
+ niwrap_mrtrix/mrtrix/warpconvert.py,sha256=_-Tgpm5znOZ-H4dkQU2nc9tROFEA_LFFV654tLdhTyQ,13281
114
+ niwrap_mrtrix/mrtrix/warpcorrect.py,sha256=I1LxNHRUUGKDbTiqgexHbdryntTelAxTHUY-ABMNhpA,10467
115
+ niwrap_mrtrix/mrtrix/warpinit.py,sha256=681nxnGPAYDvyR8O8P1A4iRzgpZoPvfgaA8Dck5HYCs,9922
116
+ niwrap_mrtrix/mrtrix/warpinvert.py,sha256=3GeilxWpX7fqJDlksmULNMPS9xtQv6SP-FhcxCe-L6A,10815
117
+ niwrap_mrtrix-0.5.0.dist-info/METADATA,sha256=4Hd6pj_v6xfOH93S6UX9PLxNBVh9EEL1IwrhuZGgdgM,223
118
+ niwrap_mrtrix-0.5.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
119
+ niwrap_mrtrix-0.5.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any