niwrap-mrtrix 0.8.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.
Files changed (119) hide show
  1. niwrap_mrtrix/mrtrix/__init__.py +263 -0
  2. niwrap_mrtrix/mrtrix/afdconnectivity.py +527 -0
  3. niwrap_mrtrix/mrtrix/amp2response.py +560 -0
  4. niwrap_mrtrix/mrtrix/amp2sh.py +870 -0
  5. niwrap_mrtrix/mrtrix/connectome2tck.py +583 -0
  6. niwrap_mrtrix/mrtrix/connectomeedit.py +413 -0
  7. niwrap_mrtrix/mrtrix/connectomestats.py +956 -0
  8. niwrap_mrtrix/mrtrix/dcmedit.py +552 -0
  9. niwrap_mrtrix/mrtrix/dcminfo.py +529 -0
  10. niwrap_mrtrix/mrtrix/dirflip.py +440 -0
  11. niwrap_mrtrix/mrtrix/dirgen.py +514 -0
  12. niwrap_mrtrix/mrtrix/dirmerge.py +446 -0
  13. niwrap_mrtrix/mrtrix/dirorder.py +421 -0
  14. niwrap_mrtrix/mrtrix/dirsplit.py +436 -0
  15. niwrap_mrtrix/mrtrix/dirstat.py +640 -0
  16. niwrap_mrtrix/mrtrix/dwi2adc.py +531 -0
  17. niwrap_mrtrix/mrtrix/dwi2fod.py +1156 -0
  18. niwrap_mrtrix/mrtrix/dwi2mask.py +570 -0
  19. niwrap_mrtrix/mrtrix/dwi2response.py +1774 -0
  20. niwrap_mrtrix/mrtrix/dwi2tensor.py +715 -0
  21. niwrap_mrtrix/mrtrix/dwibiascorrect.py +673 -0
  22. niwrap_mrtrix/mrtrix/dwidenoise.py +570 -0
  23. niwrap_mrtrix/mrtrix/dwiextract.py +1111 -0
  24. niwrap_mrtrix/mrtrix/dwigradcheck.py +665 -0
  25. niwrap_mrtrix/mrtrix/fixel2peaks.py +613 -0
  26. niwrap_mrtrix/mrtrix/fixel2sh.py +430 -0
  27. niwrap_mrtrix/mrtrix/fixel2tsf.py +435 -0
  28. niwrap_mrtrix/mrtrix/fixel2voxel.py +523 -0
  29. niwrap_mrtrix/mrtrix/fixelcfestats.py +1179 -0
  30. niwrap_mrtrix/mrtrix/fixelconnectivity.py +477 -0
  31. niwrap_mrtrix/mrtrix/fixelconvert.py +850 -0
  32. niwrap_mrtrix/mrtrix/fixelcorrespondence.py +455 -0
  33. niwrap_mrtrix/mrtrix/fixelcrop.py +422 -0
  34. niwrap_mrtrix/mrtrix/fixelfilter.py +882 -0
  35. niwrap_mrtrix/mrtrix/fixelreorient.py +435 -0
  36. niwrap_mrtrix/mrtrix/fod2dec.py +571 -0
  37. niwrap_mrtrix/mrtrix/fod2fixel.py +646 -0
  38. niwrap_mrtrix/mrtrix/label2colour.py +426 -0
  39. niwrap_mrtrix/mrtrix/label2mesh.py +417 -0
  40. niwrap_mrtrix/mrtrix/labelconvert.py +460 -0
  41. niwrap_mrtrix/mrtrix/labelstats.py +418 -0
  42. niwrap_mrtrix/mrtrix/maskdump.py +404 -0
  43. niwrap_mrtrix/mrtrix/maskfilter.py +730 -0
  44. niwrap_mrtrix/mrtrix/mesh2voxel.py +422 -0
  45. niwrap_mrtrix/mrtrix/meshconvert.py +514 -0
  46. niwrap_mrtrix/mrtrix/meshfilter.py +452 -0
  47. niwrap_mrtrix/mrtrix/mraverageheader.py +485 -0
  48. niwrap_mrtrix/mrtrix/mrcalc.py +4302 -0
  49. niwrap_mrtrix/mrtrix/mrcat.py +467 -0
  50. niwrap_mrtrix/mrtrix/mrcentroid.py +418 -0
  51. niwrap_mrtrix/mrtrix/mrcheckerboardmask.py +446 -0
  52. niwrap_mrtrix/mrtrix/mrclusterstats.py +930 -0
  53. niwrap_mrtrix/mrtrix/mrcolour.py +490 -0
  54. niwrap_mrtrix/mrtrix/mrconvert.py +1967 -0
  55. niwrap_mrtrix/mrtrix/mrdegibbs.py +535 -0
  56. niwrap_mrtrix/mrtrix/mrdump.py +423 -0
  57. niwrap_mrtrix/mrtrix/mredit.py +737 -0
  58. niwrap_mrtrix/mrtrix/mrfilter.py +971 -0
  59. niwrap_mrtrix/mrtrix/mrgrid.py +1079 -0
  60. niwrap_mrtrix/mrtrix/mrhistmatch.py +494 -0
  61. niwrap_mrtrix/mrtrix/mrhistogram.py +484 -0
  62. niwrap_mrtrix/mrtrix/mrinfo.py +1282 -0
  63. niwrap_mrtrix/mrtrix/mrmath.py +503 -0
  64. niwrap_mrtrix/mrtrix/mrmetric.py +525 -0
  65. niwrap_mrtrix/mrtrix/mrregister.py +2098 -0
  66. niwrap_mrtrix/mrtrix/mrstats.py +534 -0
  67. niwrap_mrtrix/mrtrix/mrthreshold.py +666 -0
  68. niwrap_mrtrix/mrtrix/mrtransform.py +1372 -0
  69. niwrap_mrtrix/mrtrix/mtnormalise.py +725 -0
  70. niwrap_mrtrix/mrtrix/peaks2amp.py +403 -0
  71. niwrap_mrtrix/mrtrix/peaks2fixel.py +422 -0
  72. niwrap_mrtrix/mrtrix/responsemean.py +385 -0
  73. niwrap_mrtrix/mrtrix/sh2amp.py +844 -0
  74. niwrap_mrtrix/mrtrix/sh2peaks.py +632 -0
  75. niwrap_mrtrix/mrtrix/sh2power.py +427 -0
  76. niwrap_mrtrix/mrtrix/sh2response.py +481 -0
  77. niwrap_mrtrix/mrtrix/shbasis.py +445 -0
  78. niwrap_mrtrix/mrtrix/shconv.py +661 -0
  79. niwrap_mrtrix/mrtrix/tck2connectome.py +727 -0
  80. niwrap_mrtrix/mrtrix/tck2fixel.py +447 -0
  81. niwrap_mrtrix/mrtrix/tckconvert.py +775 -0
  82. niwrap_mrtrix/mrtrix/tckdfc.py +684 -0
  83. niwrap_mrtrix/mrtrix/tckedit.py +1478 -0
  84. niwrap_mrtrix/mrtrix/tckgen.py +2733 -0
  85. niwrap_mrtrix/mrtrix/tckglobal.py +944 -0
  86. niwrap_mrtrix/mrtrix/tckinfo.py +402 -0
  87. niwrap_mrtrix/mrtrix/tckmap.py +1004 -0
  88. niwrap_mrtrix/mrtrix/tckresample.py +760 -0
  89. niwrap_mrtrix/mrtrix/tcksample.py +497 -0
  90. niwrap_mrtrix/mrtrix/tcksift.py +739 -0
  91. niwrap_mrtrix/mrtrix/tcksift2.py +902 -0
  92. niwrap_mrtrix/mrtrix/tckstats.py +550 -0
  93. niwrap_mrtrix/mrtrix/tcktransform.py +414 -0
  94. niwrap_mrtrix/mrtrix/tensor2metric.py +659 -0
  95. niwrap_mrtrix/mrtrix/transformcalc.py +421 -0
  96. niwrap_mrtrix/mrtrix/transformcompose.py +625 -0
  97. niwrap_mrtrix/mrtrix/transformconvert.py +423 -0
  98. niwrap_mrtrix/mrtrix/tsfdivide.py +414 -0
  99. niwrap_mrtrix/mrtrix/tsfinfo.py +421 -0
  100. niwrap_mrtrix/mrtrix/tsfmult.py +401 -0
  101. niwrap_mrtrix/mrtrix/tsfsmooth.py +420 -0
  102. niwrap_mrtrix/mrtrix/tsfthreshold.py +428 -0
  103. niwrap_mrtrix/mrtrix/tsfvalidate.py +398 -0
  104. niwrap_mrtrix/mrtrix/v_5tt2gmwmi.py +432 -0
  105. niwrap_mrtrix/mrtrix/v_5tt2vis.py +505 -0
  106. niwrap_mrtrix/mrtrix/v_5ttcheck.py +409 -0
  107. niwrap_mrtrix/mrtrix/v_5ttedit.py +513 -0
  108. niwrap_mrtrix/mrtrix/v_5ttgen.py +1107 -0
  109. niwrap_mrtrix/mrtrix/vectorstats.py +736 -0
  110. niwrap_mrtrix/mrtrix/voxel2fixel.py +430 -0
  111. niwrap_mrtrix/mrtrix/voxel2mesh.py +454 -0
  112. niwrap_mrtrix/mrtrix/warp2metric.py +556 -0
  113. niwrap_mrtrix/mrtrix/warpconvert.py +498 -0
  114. niwrap_mrtrix/mrtrix/warpcorrect.py +448 -0
  115. niwrap_mrtrix/mrtrix/warpinit.py +425 -0
  116. niwrap_mrtrix/mrtrix/warpinvert.py +448 -0
  117. niwrap_mrtrix-0.8.0.dist-info/METADATA +8 -0
  118. niwrap_mrtrix-0.8.0.dist-info/RECORD +119 -0
  119. niwrap_mrtrix-0.8.0.dist-info/WHEEL +4 -0
@@ -0,0 +1,448 @@
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="fe11b023d17d8a482f4f095709c5fdc089416cc2.boutiques",
10
+ name="warpinvert",
11
+ package="mrtrix",
12
+ container_image_tag="mrtrix3/mrtrix3:3.0.4",
13
+ )
14
+
15
+
16
+ _WarpinvertConfigParamsDictNoTag = typing.TypedDict('_WarpinvertConfigParamsDictNoTag', {
17
+ "key": str,
18
+ "value": str,
19
+ })
20
+ WarpinvertConfigParamsDictTagged = typing.TypedDict('WarpinvertConfigParamsDictTagged', {
21
+ "@type": typing.Literal["config"],
22
+ "key": str,
23
+ "value": str,
24
+ })
25
+ WarpinvertConfigParamsDict = _WarpinvertConfigParamsDictNoTag | WarpinvertConfigParamsDictTagged
26
+
27
+
28
+ _WarpinvertParamsDictNoTag = typing.TypedDict('_WarpinvertParamsDictNoTag', {
29
+ "template": typing.NotRequired[InputPathType | None],
30
+ "displacement": bool,
31
+ "info": bool,
32
+ "quiet": bool,
33
+ "debug": bool,
34
+ "force": bool,
35
+ "nthreads": typing.NotRequired[int | None],
36
+ "config": typing.NotRequired[list[WarpinvertConfigParamsDict] | None],
37
+ "help": bool,
38
+ "version": bool,
39
+ "in": InputPathType,
40
+ "out": str,
41
+ })
42
+ WarpinvertParamsDictTagged = typing.TypedDict('WarpinvertParamsDictTagged', {
43
+ "@type": typing.Literal["mrtrix/warpinvert"],
44
+ "template": typing.NotRequired[InputPathType | None],
45
+ "displacement": bool,
46
+ "info": bool,
47
+ "quiet": bool,
48
+ "debug": bool,
49
+ "force": bool,
50
+ "nthreads": typing.NotRequired[int | None],
51
+ "config": typing.NotRequired[list[WarpinvertConfigParamsDict] | None],
52
+ "help": bool,
53
+ "version": bool,
54
+ "in": InputPathType,
55
+ "out": str,
56
+ })
57
+ WarpinvertParamsDict = _WarpinvertParamsDictNoTag | WarpinvertParamsDictTagged
58
+
59
+
60
+ def warpinvert_config(
61
+ key: str,
62
+ value: str,
63
+ ) -> WarpinvertConfigParamsDictTagged:
64
+ """
65
+ Build parameters.
66
+
67
+ Args:
68
+ key: temporarily set the value of an MRtrix config file entry.
69
+ value: temporarily set the value of an MRtrix config file entry.
70
+ Returns:
71
+ Parameter dictionary
72
+ """
73
+ params = {
74
+ "@type": "config",
75
+ "key": key,
76
+ "value": value,
77
+ }
78
+ return params
79
+
80
+
81
+ def warpinvert_config_validate(
82
+ params: typing.Any,
83
+ ) -> None:
84
+ """
85
+ Validate parameters. Throws an error if `params` is not a valid
86
+ `WarpinvertConfigParamsDict` object.
87
+
88
+ Args:
89
+ params: The parameters object to validate.
90
+ """
91
+ if params is None or not isinstance(params, dict):
92
+ raise StyxValidationError(f'Params object has the wrong type \'{type(params)}\'')
93
+ if params.get("key", None) is None:
94
+ raise StyxValidationError("`key` must not be None")
95
+ if not isinstance(params["key"], str):
96
+ raise StyxValidationError(f'`key` has the wrong type: Received `{type(params.get("key", None))}` expected `str`')
97
+ if params.get("value", None) is None:
98
+ raise StyxValidationError("`value` must not be None")
99
+ if not isinstance(params["value"], str):
100
+ raise StyxValidationError(f'`value` has the wrong type: Received `{type(params.get("value", None))}` expected `str`')
101
+
102
+
103
+ def warpinvert_config_cargs(
104
+ params: WarpinvertConfigParamsDict,
105
+ execution: Execution,
106
+ ) -> list[str]:
107
+ """
108
+ Build command-line arguments from parameters.
109
+
110
+ Args:
111
+ params: The parameters.
112
+ execution: The execution object for resolving input paths.
113
+ Returns:
114
+ Command-line arguments.
115
+ """
116
+ cargs = []
117
+ cargs.append("-config")
118
+ cargs.append(params.get("key", None))
119
+ cargs.append(params.get("value", None))
120
+ return cargs
121
+
122
+
123
+ class WarpinvertOutputs(typing.NamedTuple):
124
+ """
125
+ Output object returned when calling `WarpinvertParamsDict(...)`.
126
+ """
127
+ root: OutputPathType
128
+ """Output root folder. This is the root folder for all outputs."""
129
+ out: OutputPathType
130
+ """the output warp image."""
131
+
132
+
133
+ def warpinvert_params(
134
+ in_: InputPathType,
135
+ out: str,
136
+ template: InputPathType | None = None,
137
+ displacement: bool = False,
138
+ info: bool = False,
139
+ quiet: bool = False,
140
+ debug: bool = False,
141
+ force: bool = False,
142
+ nthreads: int | None = None,
143
+ config: list[WarpinvertConfigParamsDict] | None = None,
144
+ help_: bool = False,
145
+ version: bool = False,
146
+ ) -> WarpinvertParamsDictTagged:
147
+ """
148
+ Build parameters.
149
+
150
+ Args:
151
+ in_: the input warp image.
152
+ out: the output warp image.
153
+ template: define a template image grid for the output warp.
154
+ displacement: indicates that the input warp field is a displacement\
155
+ field; the output will also be a displacement field.
156
+ info: display information messages.
157
+ quiet: do not display information messages or progress status;\
158
+ alternatively, this can be achieved by setting the MRTRIX_QUIET\
159
+ environment variable to a non-empty string.
160
+ debug: display debugging messages.
161
+ force: force overwrite of output files (caution: using the same file as\
162
+ input and output might cause unexpected behaviour).
163
+ nthreads: use this number of threads in multi-threaded applications\
164
+ (set to 0 to disable multi-threading).
165
+ config: temporarily set the value of an MRtrix config file entry.
166
+ help_: display this information page and exit.
167
+ version: display version information and exit.
168
+ Returns:
169
+ Parameter dictionary
170
+ """
171
+ params = {
172
+ "@type": "mrtrix/warpinvert",
173
+ "displacement": displacement,
174
+ "info": info,
175
+ "quiet": quiet,
176
+ "debug": debug,
177
+ "force": force,
178
+ "help": help_,
179
+ "version": version,
180
+ "in": in_,
181
+ "out": out,
182
+ }
183
+ if template is not None:
184
+ params["template"] = template
185
+ if nthreads is not None:
186
+ params["nthreads"] = nthreads
187
+ if config is not None:
188
+ params["config"] = config
189
+ return params
190
+
191
+
192
+ def warpinvert_validate(
193
+ params: typing.Any,
194
+ ) -> None:
195
+ """
196
+ Validate parameters. Throws an error if `params` is not a valid
197
+ `WarpinvertParamsDict` object.
198
+
199
+ Args:
200
+ params: The parameters object to validate.
201
+ """
202
+ if params is None or not isinstance(params, dict):
203
+ raise StyxValidationError(f'Params object has the wrong type \'{type(params)}\'')
204
+ if params.get("template", None) is not None:
205
+ if not isinstance(params["template"], (pathlib.Path, str)):
206
+ raise StyxValidationError(f'`template` has the wrong type: Received `{type(params.get("template", None))}` expected `InputPathType | None`')
207
+ if params.get("displacement", False) is None:
208
+ raise StyxValidationError("`displacement` must not be None")
209
+ if not isinstance(params["displacement"], bool):
210
+ raise StyxValidationError(f'`displacement` has the wrong type: Received `{type(params.get("displacement", False))}` expected `bool`')
211
+ if params.get("info", False) is None:
212
+ raise StyxValidationError("`info` must not be None")
213
+ if not isinstance(params["info"], bool):
214
+ raise StyxValidationError(f'`info` has the wrong type: Received `{type(params.get("info", False))}` expected `bool`')
215
+ if params.get("quiet", False) is None:
216
+ raise StyxValidationError("`quiet` must not be None")
217
+ if not isinstance(params["quiet"], bool):
218
+ raise StyxValidationError(f'`quiet` has the wrong type: Received `{type(params.get("quiet", False))}` expected `bool`')
219
+ if params.get("debug", False) is None:
220
+ raise StyxValidationError("`debug` must not be None")
221
+ if not isinstance(params["debug"], bool):
222
+ raise StyxValidationError(f'`debug` has the wrong type: Received `{type(params.get("debug", False))}` expected `bool`')
223
+ if params.get("force", False) is None:
224
+ raise StyxValidationError("`force` must not be None")
225
+ if not isinstance(params["force"], bool):
226
+ raise StyxValidationError(f'`force` has the wrong type: Received `{type(params.get("force", False))}` expected `bool`')
227
+ if params.get("nthreads", None) is not None:
228
+ if not isinstance(params["nthreads"], int):
229
+ raise StyxValidationError(f'`nthreads` has the wrong type: Received `{type(params.get("nthreads", None))}` expected `int | None`')
230
+ if params.get("config", None) is not None:
231
+ if not isinstance(params["config"], list):
232
+ raise StyxValidationError(f'`config` has the wrong type: Received `{type(params.get("config", None))}` expected `list[WarpinvertConfigParamsDict] | None`')
233
+ for e in params["config"]:
234
+ warpinvert_config_validate(e)
235
+ if params.get("help", False) is None:
236
+ raise StyxValidationError("`help` must not be None")
237
+ if not isinstance(params["help"], bool):
238
+ raise StyxValidationError(f'`help` has the wrong type: Received `{type(params.get("help", False))}` expected `bool`')
239
+ if params.get("version", False) is None:
240
+ raise StyxValidationError("`version` must not be None")
241
+ if not isinstance(params["version"], bool):
242
+ raise StyxValidationError(f'`version` has the wrong type: Received `{type(params.get("version", False))}` expected `bool`')
243
+ if params.get("in", None) is None:
244
+ raise StyxValidationError("`in` must not be None")
245
+ if not isinstance(params["in"], (pathlib.Path, str)):
246
+ raise StyxValidationError(f'`in` has the wrong type: Received `{type(params.get("in", None))}` expected `InputPathType`')
247
+ if params.get("out", None) is None:
248
+ raise StyxValidationError("`out` must not be None")
249
+ if not isinstance(params["out"], str):
250
+ raise StyxValidationError(f'`out` has the wrong type: Received `{type(params.get("out", None))}` expected `str`')
251
+
252
+
253
+ def warpinvert_cargs(
254
+ params: WarpinvertParamsDict,
255
+ execution: Execution,
256
+ ) -> list[str]:
257
+ """
258
+ Build command-line arguments from parameters.
259
+
260
+ Args:
261
+ params: The parameters.
262
+ execution: The execution object for resolving input paths.
263
+ Returns:
264
+ Command-line arguments.
265
+ """
266
+ cargs = []
267
+ cargs.append("warpinvert")
268
+ if params.get("template", None) is not None:
269
+ cargs.extend([
270
+ "-template",
271
+ execution.input_file(params.get("template", None))
272
+ ])
273
+ if params.get("displacement", False):
274
+ cargs.append("-displacement")
275
+ if params.get("info", False):
276
+ cargs.append("-info")
277
+ if params.get("quiet", False):
278
+ cargs.append("-quiet")
279
+ if params.get("debug", False):
280
+ cargs.append("-debug")
281
+ if params.get("force", False):
282
+ cargs.append("-force")
283
+ if params.get("nthreads", None) is not None:
284
+ cargs.extend([
285
+ "-nthreads",
286
+ str(params.get("nthreads", None))
287
+ ])
288
+ if params.get("config", None) is not None:
289
+ cargs.extend([a for c in [warpinvert_config_cargs(s, execution) for s in params.get("config", None)] for a in c])
290
+ if params.get("help", False):
291
+ cargs.append("-help")
292
+ if params.get("version", False):
293
+ cargs.append("-version")
294
+ cargs.append(execution.input_file(params.get("in", None)))
295
+ cargs.append(params.get("out", None))
296
+ return cargs
297
+
298
+
299
+ def warpinvert_outputs(
300
+ params: WarpinvertParamsDict,
301
+ execution: Execution,
302
+ ) -> WarpinvertOutputs:
303
+ """
304
+ Build outputs object containing output file paths and possibly stdout/stderr.
305
+
306
+ Args:
307
+ params: The parameters.
308
+ execution: The execution object for resolving input paths.
309
+ Returns:
310
+ Outputs object.
311
+ """
312
+ ret = WarpinvertOutputs(
313
+ root=execution.output_file("."),
314
+ out=execution.output_file(params.get("out", None)),
315
+ )
316
+ return ret
317
+
318
+
319
+ def warpinvert_execute(
320
+ params: WarpinvertParamsDict,
321
+ runner: Runner | None = None,
322
+ ) -> WarpinvertOutputs:
323
+ """
324
+ warpinvert
325
+
326
+ Invert a non-linear warp field.
327
+
328
+ By default, this command assumes that the input warp field is a deformation
329
+ field, i.e. each voxel stores the corresponding position in the other image
330
+ (in scanner space), and the calculated output warp image will also be a
331
+ deformation field. If the input warp field is instead a displacment field,
332
+ i.e. where each voxel stores an offset from which to sample the other image
333
+ (but still in scanner space), then the -displacement option should be used;
334
+ the output warp field will additionally be calculated as a displacement
335
+ field in this case.
336
+
337
+ References:
338
+
339
+ .
340
+
341
+ Author: MRTrix3 Developers
342
+
343
+ URL: https://www.mrtrix.org/
344
+
345
+ Args:
346
+ params: The parameters.
347
+ runner: Command runner.
348
+ Returns:
349
+ NamedTuple of outputs (described in `WarpinvertOutputs`).
350
+ """
351
+ warpinvert_validate(params)
352
+ runner = runner or get_global_runner()
353
+ execution = runner.start_execution(WARPINVERT_METADATA)
354
+ params = execution.params(params)
355
+ cargs = warpinvert_cargs(params, execution)
356
+ ret = warpinvert_outputs(params, execution)
357
+ execution.run(cargs)
358
+ return ret
359
+
360
+
361
+ def warpinvert(
362
+ in_: InputPathType,
363
+ out: str,
364
+ template: InputPathType | None = None,
365
+ displacement: bool = False,
366
+ info: bool = False,
367
+ quiet: bool = False,
368
+ debug: bool = False,
369
+ force: bool = False,
370
+ nthreads: int | None = None,
371
+ config: list[WarpinvertConfigParamsDict] | None = None,
372
+ help_: bool = False,
373
+ version: bool = False,
374
+ runner: Runner | None = None,
375
+ ) -> WarpinvertOutputs:
376
+ """
377
+ warpinvert
378
+
379
+ Invert a non-linear warp field.
380
+
381
+ By default, this command assumes that the input warp field is a deformation
382
+ field, i.e. each voxel stores the corresponding position in the other image
383
+ (in scanner space), and the calculated output warp image will also be a
384
+ deformation field. If the input warp field is instead a displacment field,
385
+ i.e. where each voxel stores an offset from which to sample the other image
386
+ (but still in scanner space), then the -displacement option should be used;
387
+ the output warp field will additionally be calculated as a displacement
388
+ field in this case.
389
+
390
+ References:
391
+
392
+ .
393
+
394
+ Author: MRTrix3 Developers
395
+
396
+ URL: https://www.mrtrix.org/
397
+
398
+ Args:
399
+ in_: the input warp image.
400
+ out: the output warp image.
401
+ template: define a template image grid for the output warp.
402
+ displacement: indicates that the input warp field is a displacement\
403
+ field; the output will also be a displacement field.
404
+ info: display information messages.
405
+ quiet: do not display information messages or progress status;\
406
+ alternatively, this can be achieved by setting the MRTRIX_QUIET\
407
+ environment variable to a non-empty string.
408
+ debug: display debugging messages.
409
+ force: force overwrite of output files (caution: using the same file as\
410
+ input and output might cause unexpected behaviour).
411
+ nthreads: use this number of threads in multi-threaded applications\
412
+ (set to 0 to disable multi-threading).
413
+ config: temporarily set the value of an MRtrix config file entry.
414
+ help_: display this information page and exit.
415
+ version: display version information and exit.
416
+ runner: Command runner.
417
+ Returns:
418
+ NamedTuple of outputs (described in `WarpinvertOutputs`).
419
+ """
420
+ params = warpinvert_params(
421
+ template=template,
422
+ displacement=displacement,
423
+ info=info,
424
+ quiet=quiet,
425
+ debug=debug,
426
+ force=force,
427
+ nthreads=nthreads,
428
+ config=config,
429
+ help_=help_,
430
+ version=version,
431
+ in_=in_,
432
+ out=out,
433
+ )
434
+ return warpinvert_execute(params, runner)
435
+
436
+
437
+ __all__ = [
438
+ "WARPINVERT_METADATA",
439
+ "WarpinvertConfigParamsDict",
440
+ "WarpinvertConfigParamsDictTagged",
441
+ "WarpinvertOutputs",
442
+ "WarpinvertParamsDict",
443
+ "WarpinvertParamsDictTagged",
444
+ "warpinvert",
445
+ "warpinvert_config",
446
+ "warpinvert_execute",
447
+ "warpinvert_params",
448
+ ]
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: niwrap-mrtrix
3
+ Version: 0.8.0
4
+ Summary: Neuroimaging wrappers.
5
+ Author: CMI DAIR
6
+ License-Expression: MIT
7
+ Requires-Dist: styxdefs>=0.6.0,<0.7.0
8
+ Requires-Python: >=3.10
@@ -0,0 +1,119 @@
1
+ niwrap_mrtrix/mrtrix/__init__.py,sha256=d3GCF8plwRYSbR3hKmdCvEi0dSWfcA21n8JO4dQ2eWo,9454
2
+ niwrap_mrtrix/mrtrix/afdconnectivity.py,sha256=LgqYGzlptdO58AMDhhKn1XPvFvPdndTGKybmfuRm4iQ,21205
3
+ niwrap_mrtrix/mrtrix/amp2response.py,sha256=HwNBNWb322TbBlAIN3igQaVa4oUJ2LLfbD_hAKX95d4,22690
4
+ niwrap_mrtrix/mrtrix/amp2sh.py,sha256=3498BaOG7zmB7xTlZUr7FRSMRRE_917TZL_ytHXE-cc,33669
5
+ niwrap_mrtrix/mrtrix/connectome2tck.py,sha256=E4ncwkFaLwO3bnETxCJTINHmX2OkM-PqIzquBw0BXqQ,23917
6
+ niwrap_mrtrix/mrtrix/connectomeedit.py,sha256=iIzKe13wZPsHhLT06vA-MMXnAa1lqD2EwAWLW4dabrE,14098
7
+ niwrap_mrtrix/mrtrix/connectomestats.py,sha256=1bBdoZO-yZ-ZVaJb6xUiWbOpOiAIm4cxNC_GmkPShxY,42865
8
+ niwrap_mrtrix/mrtrix/dcmedit.py,sha256=AhDUe3jGK1BuvxPlfyiCzEUJBv6UZvESW3AmlXJkIuA,19287
9
+ niwrap_mrtrix/mrtrix/dcminfo.py,sha256=d77r8XolqMH-LYQCuSPJTVq2fi8dtecLpRaflzgY-Ac,17843
10
+ niwrap_mrtrix/mrtrix/dirflip.py,sha256=X7g5LOMONchaRS0TwbZW36yXT9JvuJALKVabsOit8-k,15126
11
+ niwrap_mrtrix/mrtrix/dirgen.py,sha256=yi9xYRVd5ymc57AXVxI26rn5IItNlIT76ruENbCp3h0,19088
12
+ niwrap_mrtrix/mrtrix/dirmerge.py,sha256=QSDjVT5oABLQwJ2pcLAusizuzhCkNXo6KyxdD_0ncTo,15723
13
+ niwrap_mrtrix/mrtrix/dirorder.py,sha256=9sywLJuHxPbJ86q9oicx_rXNy60OFoNxaCTdtOc8ks4,14418
14
+ niwrap_mrtrix/mrtrix/dirsplit.py,sha256=4ngP9ySZZjKf-bDoBdyWq8Vz5H4uAa9_itdT0Eor1pE,14905
15
+ niwrap_mrtrix/mrtrix/dirstat.py,sha256=ZsvAjqJ079z0ByHVVJz_5Td89ySJhqD_q71LkrpCPZQ,25039
16
+ niwrap_mrtrix/mrtrix/dwi2adc.py,sha256=zWmPfGvjOzbcYzIR2ychqyXURNF917eiMEWr_ZXqpyI,18790
17
+ niwrap_mrtrix/mrtrix/dwi2fod.py,sha256=Qb_YB45shXj2BWA1UMgpT2UCYO-TNmtNYUA4BproQXo,47113
18
+ niwrap_mrtrix/mrtrix/dwi2mask.py,sha256=t_JX4DGcPHODMWLC668vZLeXEAqyXOcGWdPrIw81bHM,21427
19
+ niwrap_mrtrix/mrtrix/dwi2response.py,sha256=zC6xCy6-BErdfnVxcK7abLqXWcPSAK0rKBWSGyZ6Ofk,68682
20
+ niwrap_mrtrix/mrtrix/dwi2tensor.py,sha256=Xn7BQNF94hcxP51bcskHeIV2pD4feKoD9p-fYO11gS0,27738
21
+ niwrap_mrtrix/mrtrix/dwibiascorrect.py,sha256=FqPBZBSZZMixzZ0--r0wan3h-NhUnUoL5ZiD97mYhiI,27160
22
+ niwrap_mrtrix/mrtrix/dwidenoise.py,sha256=JHCUuVg7tNg0xJt4fVanC0ncCNuazyR1z9n2ziSTZh8,22809
23
+ niwrap_mrtrix/mrtrix/dwiextract.py,sha256=qvras0io2DSx_DOzNM23TObRGA2uUlT6f5JX02kLjzQ,43427
24
+ niwrap_mrtrix/mrtrix/dwigradcheck.py,sha256=yAD0sHwkEu1-je5TgHwSdV8qYTuom02_AH11vZQRJ8o,26872
25
+ niwrap_mrtrix/mrtrix/fixel2peaks.py,sha256=DC9fsoa_ZJcoZP5Tgrb9W7xzKkre-vxfi89rUxljjjI,20628
26
+ niwrap_mrtrix/mrtrix/fixel2sh.py,sha256=J49FKpi0FYwtXysdTJ70SqC3Nh17XBXszVs9iENCGSI,14871
27
+ niwrap_mrtrix/mrtrix/fixel2tsf.py,sha256=CQ02MU8Um-Z8_aFwQa8eidc6qFWKLRuSnmfHHKbh-YA,15072
28
+ niwrap_mrtrix/mrtrix/fixel2voxel.py,sha256=eozyW-YNP5F6AYrYQcF7c_f-JgOf4pQ2RVH57Hc6d1w,19881
29
+ niwrap_mrtrix/mrtrix/fixelcfestats.py,sha256=IzS5R1JF003Ye89RHc-Cs0DcjK62ehBN-ehQMbiR9BU,51713
30
+ niwrap_mrtrix/mrtrix/fixelconnectivity.py,sha256=hM3Og6gmx4cUJjZB_vo18RJImO9kytuNmGrsd5p6yLg,18094
31
+ niwrap_mrtrix/mrtrix/fixelconvert.py,sha256=Ww7CORAF8cHH2aGz2IqgQNH5VtbwRR9RjzbaVEcWFiQ,29569
32
+ niwrap_mrtrix/mrtrix/fixelcorrespondence.py,sha256=O_-xg2MjgPLFlaPL0U9tSMm4hlBYd7-EyGgfPaCFhfQ,17249
33
+ niwrap_mrtrix/mrtrix/fixelcrop.py,sha256=MSwb0VEQhHxlXkp4eCGwVbgukKbSu3f98qcHjn2yvq4,15347
34
+ niwrap_mrtrix/mrtrix/fixelfilter.py,sha256=ghdoPe6yM6bqu-ssbN4Rw9T6lrWoZC5M5eHGSvbxeTk,31471
35
+ niwrap_mrtrix/mrtrix/fixelreorient.py,sha256=5gqcUKsxM9z-gpsg0ctm5riO4Ot70yN5JJGiGsbwPXA,15922
36
+ niwrap_mrtrix/mrtrix/fod2dec.py,sha256=3iyVTStBm9Z2WVz0FpOIQgJnb7RWsTRFZCeW_PcYv_Q,22814
37
+ niwrap_mrtrix/mrtrix/fod2fixel.py,sha256=2j59HrEiG65x2Up7rEvq1rYmGtUpYhLbyXod5TfqNMY,26264
38
+ niwrap_mrtrix/mrtrix/label2colour.py,sha256=uO8hFlfUERD6kPDUHD2l4ALG48c0GK4-hzdS3o78shw,14947
39
+ niwrap_mrtrix/mrtrix/label2mesh.py,sha256=prIz-1ZUsvHu11g_LvZolQERAXt-3H3V4OzXZNZaiB8,14138
40
+ niwrap_mrtrix/mrtrix/labelconvert.py,sha256=3x5Cjya6FtiG5M0nq-UvqrAgeTZ6vxJHhOmkBQMMAXg,16921
41
+ niwrap_mrtrix/mrtrix/labelstats.py,sha256=z6cJoFZI43rsPYl_xxayrao5x0BP48AHYYU-9CzIAlw,14170
42
+ niwrap_mrtrix/mrtrix/maskdump.py,sha256=WP9Tr-rVG5AVCdk7VilBcgj_GRJMLGpz5t0swxMgjNs,13547
43
+ niwrap_mrtrix/mrtrix/maskfilter.py,sha256=uHj4OOCA_8n0rIKPli33SyQNiNgU7Jv1vUB-SPp8c5Y,26713
44
+ niwrap_mrtrix/mrtrix/mesh2voxel.py,sha256=7KTHu_fCK8OuhtUeQCxjaQ2HL5qVy47Xt3nR05zyIp0,14539
45
+ niwrap_mrtrix/mrtrix/meshconvert.py,sha256=F_zvsoFUd5yypavmR1_XjI9Vzs9ShvlAipZcfd3yNlk,17823
46
+ niwrap_mrtrix/mrtrix/meshfilter.py,sha256=caZqXDTIuMY0-phX8gvgQONlLgsVAk0DRw2KR39jehk,16043
47
+ niwrap_mrtrix/mrtrix/mraverageheader.py,sha256=5MWd6bb1dwMyozo2rcEZo10Ml0hNCRsPrziMVXk-T14,18146
48
+ niwrap_mrtrix/mrtrix/mrcalc.py,sha256=AlYYoyKuhwOq719883bfmQhbtUwOP2tlsa0GWiiOZsc,136217
49
+ niwrap_mrtrix/mrtrix/mrcat.py,sha256=A5XV1W3t15l5LfDog30HHqBxPAXITzlwRM1lYZGsBu8,16548
50
+ niwrap_mrtrix/mrtrix/mrcentroid.py,sha256=XGA2aFvAS_lWT98hD35pBCay89sUfQ1WUVAd6XNfTJw,14216
51
+ niwrap_mrtrix/mrtrix/mrcheckerboardmask.py,sha256=e_fnjNkz8eJ1XzPLDeLjH3AEmiIdAtIPJsEjO-0JezA,15716
52
+ niwrap_mrtrix/mrtrix/mrclusterstats.py,sha256=tXxHF3AQULTx03NqFp-vrcd-Eg7hG-E0840iV3EbQy0,41263
53
+ niwrap_mrtrix/mrtrix/mrcolour.py,sha256=Kbt9zUMKiSUkabGw9wJ3doDwYmV99FanGMe98y1A1yY,17577
54
+ niwrap_mrtrix/mrtrix/mrconvert.py,sha256=SgDLsQcwMy0dlcIphUAfAjUhHFAz08ORSa7nQ1mtaX8,78300
55
+ niwrap_mrtrix/mrtrix/mrdegibbs.py,sha256=KlVTjDb63O7FKahiBl0DXAE2i_wIr4EUJnXXxi3MU4k,20336
56
+ niwrap_mrtrix/mrtrix/mrdump.py,sha256=w3SmHFT7IC6ZI43jszsoGVI3LwjQVoPWuHF9c3-AnGI,14222
57
+ niwrap_mrtrix/mrtrix/mredit.py,sha256=pAgx2-YpC15gxcbV-BhmlwdVsknorRCsgKkbCylTUPI,26219
58
+ niwrap_mrtrix/mrtrix/mrfilter.py,sha256=0Mx_uadlqtSxF9ogIvrjrQQSvKRo1l-YFfxGxRuqPm0,39344
59
+ niwrap_mrtrix/mrtrix/mrgrid.py,sha256=AYWLo-ZHE5WyOMIHOI0G27j6QhTyu0l59cOXTTjjpic,45407
60
+ niwrap_mrtrix/mrtrix/mrhistmatch.py,sha256=Eg2YcdY7VeA2nwlPqrRLJmh5ZiD61V9e-nOeFhMBsUg,18078
61
+ niwrap_mrtrix/mrtrix/mrhistogram.py,sha256=962zADPOxiCvo_DJWvsBTAYuFaI6_u8GDSStpk73K4I,17361
62
+ niwrap_mrtrix/mrtrix/mrinfo.py,sha256=AEDfnENQpDHs7dmRDyVLrgQzdgoK-wQxfPxEHmF8grE,51977
63
+ niwrap_mrtrix/mrtrix/mrmath.py,sha256=uOMxC3f2wBX_Fj5YMAP3FKyb_80TIGhLS3rVBgBzmTk,18599
64
+ niwrap_mrtrix/mrtrix/mrmetric.py,sha256=_ewkpKzO1wmOXCEeJ8eWW2DiI5BSodv56trBa908IAc,19394
65
+ niwrap_mrtrix/mrtrix/mrregister.py,sha256=DcdxoBCks8Iww4HeZYO93s-jBhXD9T2-i_9Tbmcnsf0,107212
66
+ niwrap_mrtrix/mrtrix/mrstats.py,sha256=fMpOgJn_COxdB9Ucv4dmBXw8ejkBpMB4NnHOOAkJqe0,19007
67
+ niwrap_mrtrix/mrtrix/mrthreshold.py,sha256=Zao1pBo2GTeO7Svv5h0KOOj8ccFufUkDBu9Dn-fb-jI,27045
68
+ niwrap_mrtrix/mrtrix/mrtransform.py,sha256=kV56bQ7D9vUYodSSgtLNrw4lzOZen-VALKaoJQ_LJ1Q,59811
69
+ niwrap_mrtrix/mrtrix/mtnormalise.py,sha256=SOXT55edRhc-iBVhCrOghDx-ETjltEJM1WiiBctalgs,29430
70
+ niwrap_mrtrix/mrtrix/peaks2amp.py,sha256=CiGyCsyFTG4GUzVQyprcHdrvMR9XX4_Cypwv3T4pxQs,13586
71
+ niwrap_mrtrix/mrtrix/peaks2fixel.py,sha256=Wauh2vNWXzrH35aJS9wGj2DjBbJhLI8BAfwmWLYMyaQ,14492
72
+ niwrap_mrtrix/mrtrix/responsemean.py,sha256=T1W0O5sC1uKCMDuJJEZ6OinvLrsV3ygBvTTUhN9tncg,15295
73
+ niwrap_mrtrix/mrtrix/sh2amp.py,sha256=m2pyA2B5cArd97zZRRL9gvmBR4YHeNI0iFxxBjmUXW0,32109
74
+ niwrap_mrtrix/mrtrix/sh2peaks.py,sha256=Fhid_G4PXUBrjNCJ6lv88JGMV5CRVBfzEbWXChWm9_Y,23760
75
+ niwrap_mrtrix/mrtrix/sh2power.py,sha256=0KBVW9O1i6FvL2lBHz-fk-Ud7E1UpocFQQWbA9lyT2Y,14718
76
+ niwrap_mrtrix/mrtrix/sh2response.py,sha256=3RnpHwBImtJ4QvqzjRD0Zbj_b806dDbKOCdxAHC7-Ck,17564
77
+ niwrap_mrtrix/mrtrix/shbasis.py,sha256=Dk2CGeVmrY5eqkcCvy73DR_cYLTVqszOUXvTyFt7Krs,15925
78
+ niwrap_mrtrix/mrtrix/shconv.py,sha256=PfDuB_UFtQq7UHKkAQYmKAkVrstnJe0DtZ5xgWxL4x0,23541
79
+ niwrap_mrtrix/mrtrix/tck2connectome.py,sha256=yFG9GJZRwLn-cXhI2mXniXfVoOhHRn0soLXEQQm0JlI,32709
80
+ niwrap_mrtrix/mrtrix/tck2fixel.py,sha256=TgxnEO2u-mWOo6F8YRxCdi5toC9jupYnhkcO8MDz0hg,15847
81
+ niwrap_mrtrix/mrtrix/tckconvert.py,sha256=hF7rHrNI8tsQeo-II8zyqK9OEfXOZ7ihFpNw5unSCoU,28578
82
+ niwrap_mrtrix/mrtrix/tckdfc.py,sha256=W96GrShh9vceLGsmM774jsioQ5NjNzbFFQUc0or-JOE,26498
83
+ niwrap_mrtrix/mrtrix/tckedit.py,sha256=mUo2zrM5o4n9ZOTheBwgiLkr7SxyA_ku5yt3JLgObu8,52697
84
+ niwrap_mrtrix/mrtrix/tckgen.py,sha256=runCB4o1z0eyqBsV0p3H8RlkantfAJvCI63ku4k1NjU,112504
85
+ niwrap_mrtrix/mrtrix/tckglobal.py,sha256=GKWgf1C3xWAw0tIC4vsdyxCbVw_18tbmQy5tAnYAy7s,38566
86
+ niwrap_mrtrix/mrtrix/tckinfo.py,sha256=dJj6TYPKVgMfNx_iM-m_aY_x9cSHVukxyJ8VZJwjHzY,13314
87
+ niwrap_mrtrix/mrtrix/tckmap.py,sha256=svbquOQ6q_Oa5wAANs2hDSnzxzBHp2_U9XrDn21Upr8,40627
88
+ niwrap_mrtrix/mrtrix/tckresample.py,sha256=e82yCgc06jdefziCEkE6ssD31EVjEJ-3vNc8fcrJNdU,29580
89
+ niwrap_mrtrix/mrtrix/tcksample.py,sha256=e14_E3xT8h9OhCuJA0CdF7HszHQjh4Q0WV2Ufbr0MD4,18741
90
+ niwrap_mrtrix/mrtrix/tcksift.py,sha256=yxv4C5prneTi9nGAShkorr7Ef1UtyzmUvonH-ER_-Cc,31377
91
+ niwrap_mrtrix/mrtrix/tcksift2.py,sha256=MX-RCeUJKyOStbU2T6kMX6PS1uOiVZhJOwIxioNavY0,40316
92
+ niwrap_mrtrix/mrtrix/tckstats.py,sha256=U5dqdnCEp44cIsEpaD1FLyd_ikT9gQzDx82DiMBuTdA,19527
93
+ niwrap_mrtrix/mrtrix/tcktransform.py,sha256=zvrOhCVcEHBXAIUF0kNJedX8xrAZvKogLhJqZcwPjVE,14114
94
+ niwrap_mrtrix/mrtrix/tensor2metric.py,sha256=hhTBpMfKISCEQCpzBCZbPl17BN6xMAHPtcclRY8M-MI,26028
95
+ niwrap_mrtrix/mrtrix/transformcalc.py,sha256=rOx9JuOkgSQX_aQAir68c6bQgCIYbg-ZpF0ehFqf-lA,14678
96
+ niwrap_mrtrix/mrtrix/transformcompose.py,sha256=pQgHCreHi7og_RQP-xG3r5JK25jS5JA-QzTbHL7YK18,22672
97
+ niwrap_mrtrix/mrtrix/transformconvert.py,sha256=7-0gb1XqmGOixNlNnpN-RurdgXm5rYjVyvHq5gsZyXM,14905
98
+ niwrap_mrtrix/mrtrix/tsfdivide.py,sha256=_B5RAu48gyS9i7VvelnWyareVOrKUmera10rnXPPIhg,13910
99
+ niwrap_mrtrix/mrtrix/tsfinfo.py,sha256=1Cc1kxyi9-3eVxTsh8BK8lz_jm46PkZBMApxYrCF634,14191
100
+ niwrap_mrtrix/mrtrix/tsfmult.py,sha256=eDpxsaSVdFujCDRPKTxYUoe86kIX5pj2Dg9V0DrjFyA,13140
101
+ niwrap_mrtrix/mrtrix/tsfsmooth.py,sha256=rgnwavPFyuiEYZh_5eXcNYjnmaHwfoGO6T3Q8od5aUU,14178
102
+ niwrap_mrtrix/mrtrix/tsfthreshold.py,sha256=5QQpPCwwIXyOufpS9V2LGugR7l6LPp_1yeFFGpaOCnU,14500
103
+ niwrap_mrtrix/mrtrix/tsfvalidate.py,sha256=LZd-CD1twI7HjrvsTjbNkYGY8Eq5kq835U2U84iHnYU,13362
104
+ niwrap_mrtrix/mrtrix/v_5tt2gmwmi.py,sha256=Z7xflqfo3q-yZzNneQij2c5fykXRCDBClRZGheb9MBg,15272
105
+ niwrap_mrtrix/mrtrix/v_5tt2vis.py,sha256=DLP1xaH9ai8B22X8Jf56bH2T7QdliV0IRT16fnqeWVU,17622
106
+ niwrap_mrtrix/mrtrix/v_5ttcheck.py,sha256=Vv8RcOwh4ENmb3QsoO0BCmlIFqK26_wZSO3QuMtCV-I,13824
107
+ niwrap_mrtrix/mrtrix/v_5ttedit.py,sha256=8YYrW_AltPXYos2-zc0uIB-z8bp3cqusmjp7CJ1lF3c,18428
108
+ niwrap_mrtrix/mrtrix/v_5ttgen.py,sha256=yb0s6w68S9Nc5_uts6F2BNCirjEcs7SWDseBUUcwVZk,40007
109
+ niwrap_mrtrix/mrtrix/vectorstats.py,sha256=uGV6IAYXGGrDMPPFA3jh6lBWyR_SOazbSkB-XDb_ynQ,30546
110
+ niwrap_mrtrix/mrtrix/voxel2fixel.py,sha256=j8ORQtVySGaavecG4qT578DbGtwxzoPqYeaOQoL__Ac,15528
111
+ niwrap_mrtrix/mrtrix/voxel2mesh.py,sha256=dZQoeLriBaF_Vighxf02fDem1cgbG9ED_KLvtqwufxQ,16167
112
+ niwrap_mrtrix/mrtrix/warp2metric.py,sha256=MCYNBTKp3KPJKHm7-UT09nyDK7_ayG2M1dsMB-M1UQA,20935
113
+ niwrap_mrtrix/mrtrix/warpconvert.py,sha256=ybSC47Q7x4-sRaRYXr5QU6Dezl3iZj1ckMsg46W9Jjg,19085
114
+ niwrap_mrtrix/mrtrix/warpcorrect.py,sha256=UxL7uZDWRpn7bWu3SVzLcuvrhfS_y4S8wmmacqkCywY,15874
115
+ niwrap_mrtrix/mrtrix/warpinit.py,sha256=ns5zzjW1jc3q6wFnjrGbyZeORYTuXsBMkqkHHg4VnTY,14447
116
+ niwrap_mrtrix/mrtrix/warpinvert.py,sha256=yDQYQeHlsD0hsvS6Ub2jymmyYx7gxFVW4YVN3lJ0PBI,16023
117
+ niwrap_mrtrix-0.8.0.dist-info/WHEEL,sha256=eh7sammvW2TypMMMGKgsM83HyA_3qQ5Lgg3ynoecH3M,79
118
+ niwrap_mrtrix-0.8.0.dist-info/METADATA,sha256=ViuiJqcKPAj5rehkSv2Lwskc3ywU8UTc6lVjScZVR5s,192
119
+ niwrap_mrtrix-0.8.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.8.24
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any