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.
- niwrap_mrtrix/mrtrix/__init__.py +130 -0
- niwrap_mrtrix/mrtrix/afdconnectivity.py +445 -0
- niwrap_mrtrix/mrtrix/amp2response.py +453 -0
- niwrap_mrtrix/mrtrix/amp2sh.py +656 -0
- niwrap_mrtrix/mrtrix/connectome2tck.py +470 -0
- niwrap_mrtrix/mrtrix/connectomeedit.py +338 -0
- niwrap_mrtrix/mrtrix/connectomestats.py +767 -0
- niwrap_mrtrix/mrtrix/dcmedit.py +440 -0
- niwrap_mrtrix/mrtrix/dcminfo.py +416 -0
- niwrap_mrtrix/mrtrix/dirflip.py +362 -0
- niwrap_mrtrix/mrtrix/dirgen.py +423 -0
- niwrap_mrtrix/mrtrix/dirmerge.py +365 -0
- niwrap_mrtrix/mrtrix/dirorder.py +347 -0
- niwrap_mrtrix/mrtrix/dirsplit.py +358 -0
- niwrap_mrtrix/mrtrix/dirstat.py +530 -0
- niwrap_mrtrix/mrtrix/dwi2adc.py +428 -0
- niwrap_mrtrix/mrtrix/dwi2fod.py +879 -0
- niwrap_mrtrix/mrtrix/dwi2mask.py +463 -0
- niwrap_mrtrix/mrtrix/dwi2response.py +1295 -0
- niwrap_mrtrix/mrtrix/dwi2tensor.py +587 -0
- niwrap_mrtrix/mrtrix/dwibiascorrect.py +467 -0
- niwrap_mrtrix/mrtrix/dwidenoise.py +478 -0
- niwrap_mrtrix/mrtrix/dwiextract.py +825 -0
- niwrap_mrtrix/mrtrix/dwigradcheck.py +534 -0
- niwrap_mrtrix/mrtrix/fixel2peaks.py +452 -0
- niwrap_mrtrix/mrtrix/fixel2sh.py +357 -0
- niwrap_mrtrix/mrtrix/fixel2tsf.py +357 -0
- niwrap_mrtrix/mrtrix/fixel2voxel.py +437 -0
- niwrap_mrtrix/mrtrix/fixelcfestats.py +893 -0
- niwrap_mrtrix/mrtrix/fixelconnectivity.py +391 -0
- niwrap_mrtrix/mrtrix/fixelconvert.py +588 -0
- niwrap_mrtrix/mrtrix/fixelcorrespondence.py +371 -0
- niwrap_mrtrix/mrtrix/fixelcrop.py +348 -0
- niwrap_mrtrix/mrtrix/fixelfilter.py +616 -0
- niwrap_mrtrix/mrtrix/fixelreorient.py +361 -0
- niwrap_mrtrix/mrtrix/fod2dec.py +469 -0
- niwrap_mrtrix/mrtrix/fod2fixel.py +530 -0
- niwrap_mrtrix/mrtrix/label2colour.py +351 -0
- niwrap_mrtrix/mrtrix/label2mesh.py +343 -0
- niwrap_mrtrix/mrtrix/labelconvert.py +377 -0
- niwrap_mrtrix/mrtrix/labelstats.py +344 -0
- niwrap_mrtrix/mrtrix/maskdump.py +336 -0
- niwrap_mrtrix/mrtrix/maskfilter.py +537 -0
- niwrap_mrtrix/mrtrix/mesh2voxel.py +348 -0
- niwrap_mrtrix/mrtrix/meshconvert.py +410 -0
- niwrap_mrtrix/mrtrix/meshfilter.py +370 -0
- niwrap_mrtrix/mrtrix/mraverageheader.py +396 -0
- niwrap_mrtrix/mrtrix/mrcalc.py +3047 -0
- niwrap_mrtrix/mrtrix/mrcat.py +382 -0
- niwrap_mrtrix/mrtrix/mrcentroid.py +344 -0
- niwrap_mrtrix/mrtrix/mrcheckerboardmask.py +363 -0
- niwrap_mrtrix/mrtrix/mrclusterstats.py +736 -0
- niwrap_mrtrix/mrtrix/mrcolour.py +401 -0
- niwrap_mrtrix/mrtrix/mrconvert.py +1423 -0
- niwrap_mrtrix/mrtrix/mrdegibbs.py +443 -0
- niwrap_mrtrix/mrtrix/mrdump.py +351 -0
- niwrap_mrtrix/mrtrix/mredit.py +546 -0
- niwrap_mrtrix/mrtrix/mrfilter.py +716 -0
- niwrap_mrtrix/mrtrix/mrgrid.py +819 -0
- niwrap_mrtrix/mrtrix/mrhistmatch.py +403 -0
- niwrap_mrtrix/mrtrix/mrhistogram.py +393 -0
- niwrap_mrtrix/mrtrix/mrinfo.py +990 -0
- niwrap_mrtrix/mrtrix/mrmath.py +413 -0
- niwrap_mrtrix/mrtrix/mrmetric.py +425 -0
- niwrap_mrtrix/mrtrix/mrregister.py +1676 -0
- niwrap_mrtrix/mrtrix/mrstats.py +427 -0
- niwrap_mrtrix/mrtrix/mrthreshold.py +549 -0
- niwrap_mrtrix/mrtrix/mrtransform.py +1061 -0
- niwrap_mrtrix/mrtrix/mtnormalise.py +596 -0
- niwrap_mrtrix/mrtrix/peaks2amp.py +334 -0
- niwrap_mrtrix/mrtrix/peaks2fixel.py +349 -0
- niwrap_mrtrix/mrtrix/responsemean.py +316 -0
- niwrap_mrtrix/mrtrix/sh2amp.py +640 -0
- niwrap_mrtrix/mrtrix/sh2peaks.py +505 -0
- niwrap_mrtrix/mrtrix/sh2power.py +353 -0
- niwrap_mrtrix/mrtrix/sh2response.py +394 -0
- niwrap_mrtrix/mrtrix/shbasis.py +373 -0
- niwrap_mrtrix/mrtrix/shconv.py +498 -0
- niwrap_mrtrix/mrtrix/tck2connectome.py +580 -0
- niwrap_mrtrix/mrtrix/tck2fixel.py +363 -0
- niwrap_mrtrix/mrtrix/tckconvert.py +580 -0
- niwrap_mrtrix/mrtrix/tckdfc.py +551 -0
- niwrap_mrtrix/mrtrix/tckedit.py +1003 -0
- niwrap_mrtrix/mrtrix/tckgen.py +1983 -0
- niwrap_mrtrix/mrtrix/tckglobal.py +758 -0
- niwrap_mrtrix/mrtrix/tckinfo.py +329 -0
- niwrap_mrtrix/mrtrix/tckmap.py +772 -0
- niwrap_mrtrix/mrtrix/tckresample.py +580 -0
- niwrap_mrtrix/mrtrix/tcksample.py +404 -0
- niwrap_mrtrix/mrtrix/tcksift.py +592 -0
- niwrap_mrtrix/mrtrix/tcksift2.py +730 -0
- niwrap_mrtrix/mrtrix/tckstats.py +441 -0
- niwrap_mrtrix/mrtrix/tcktransform.py +340 -0
- niwrap_mrtrix/mrtrix/tensor2metric.py +544 -0
- niwrap_mrtrix/mrtrix/transformcalc.py +344 -0
- niwrap_mrtrix/mrtrix/transformcompose.py +465 -0
- niwrap_mrtrix/mrtrix/transformconvert.py +346 -0
- niwrap_mrtrix/mrtrix/tsfdivide.py +340 -0
- niwrap_mrtrix/mrtrix/tsfinfo.py +344 -0
- niwrap_mrtrix/mrtrix/tsfmult.py +340 -0
- niwrap_mrtrix/mrtrix/tsfsmooth.py +347 -0
- niwrap_mrtrix/mrtrix/tsfthreshold.py +349 -0
- niwrap_mrtrix/mrtrix/tsfvalidate.py +328 -0
- niwrap_mrtrix/mrtrix/v_5tt2gmwmi.py +359 -0
- niwrap_mrtrix/mrtrix/v_5tt2vis.py +412 -0
- niwrap_mrtrix/mrtrix/v_5ttcheck.py +337 -0
- niwrap_mrtrix/mrtrix/v_5ttedit.py +420 -0
- niwrap_mrtrix/mrtrix/v_5ttgen.py +816 -0
- niwrap_mrtrix/mrtrix/vectorstats.py +585 -0
- niwrap_mrtrix/mrtrix/voxel2fixel.py +350 -0
- niwrap_mrtrix/mrtrix/voxel2mesh.py +376 -0
- niwrap_mrtrix/mrtrix/warp2metric.py +449 -0
- niwrap_mrtrix/mrtrix/warpconvert.py +411 -0
- niwrap_mrtrix/mrtrix/warpcorrect.py +368 -0
- niwrap_mrtrix/mrtrix/warpinit.py +356 -0
- niwrap_mrtrix/mrtrix/warpinvert.py +370 -0
- niwrap_mrtrix-0.5.0.dist-info/METADATA +8 -0
- niwrap_mrtrix-0.5.0.dist-info/RECORD +119 -0
- niwrap_mrtrix-0.5.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,350 @@
|
|
|
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
|
+
VOXEL2FIXEL_METADATA = Metadata(
|
|
9
|
+
id="5eac19f16617dbecc2080fd5f4f07d1eac6e92da.boutiques",
|
|
10
|
+
name="voxel2fixel",
|
|
11
|
+
package="mrtrix",
|
|
12
|
+
container_image_tag="mrtrix3/mrtrix3:3.0.4",
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
Voxel2fixelConfigParameters = typing.TypedDict('Voxel2fixelConfigParameters', {
|
|
17
|
+
"__STYX_TYPE__": typing.Literal["config"],
|
|
18
|
+
"key": str,
|
|
19
|
+
"value": str,
|
|
20
|
+
})
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
Voxel2fixelParameters = typing.TypedDict('Voxel2fixelParameters', {
|
|
24
|
+
"__STYX_TYPE__": typing.Literal["voxel2fixel"],
|
|
25
|
+
"info": bool,
|
|
26
|
+
"quiet": bool,
|
|
27
|
+
"debug": bool,
|
|
28
|
+
"force": bool,
|
|
29
|
+
"nthreads": typing.NotRequired[int | None],
|
|
30
|
+
"config": typing.NotRequired[list[Voxel2fixelConfigParameters] | None],
|
|
31
|
+
"help": bool,
|
|
32
|
+
"version": bool,
|
|
33
|
+
"image_in": InputPathType,
|
|
34
|
+
"fixel_directory_in": InputPathType,
|
|
35
|
+
"fixel_directory_out": str,
|
|
36
|
+
"fixel_data_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
|
+
"voxel2fixel": voxel2fixel_cargs,
|
|
53
|
+
"config": voxel2fixel_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
|
+
}.get(t)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
def voxel2fixel_config_params(
|
|
73
|
+
key: str,
|
|
74
|
+
value: str,
|
|
75
|
+
) -> Voxel2fixelConfigParameters:
|
|
76
|
+
"""
|
|
77
|
+
Build parameters.
|
|
78
|
+
|
|
79
|
+
Args:
|
|
80
|
+
key: temporarily set the value of an MRtrix config file entry.
|
|
81
|
+
value: temporarily set the value of an MRtrix config file entry.
|
|
82
|
+
Returns:
|
|
83
|
+
Parameter dictionary
|
|
84
|
+
"""
|
|
85
|
+
params = {
|
|
86
|
+
"__STYXTYPE__": "config",
|
|
87
|
+
"key": key,
|
|
88
|
+
"value": value,
|
|
89
|
+
}
|
|
90
|
+
return params
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
def voxel2fixel_config_cargs(
|
|
94
|
+
params: Voxel2fixelConfigParameters,
|
|
95
|
+
execution: Execution,
|
|
96
|
+
) -> list[str]:
|
|
97
|
+
"""
|
|
98
|
+
Build command-line arguments from parameters.
|
|
99
|
+
|
|
100
|
+
Args:
|
|
101
|
+
params: The parameters.
|
|
102
|
+
execution: The execution object for resolving input paths.
|
|
103
|
+
Returns:
|
|
104
|
+
Command-line arguments.
|
|
105
|
+
"""
|
|
106
|
+
cargs = []
|
|
107
|
+
cargs.append("-config")
|
|
108
|
+
cargs.append(params.get("key"))
|
|
109
|
+
cargs.append(params.get("value"))
|
|
110
|
+
return cargs
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
class Voxel2fixelOutputs(typing.NamedTuple):
|
|
114
|
+
"""
|
|
115
|
+
Output object returned when calling `voxel2fixel(...)`.
|
|
116
|
+
"""
|
|
117
|
+
root: OutputPathType
|
|
118
|
+
"""Output root folder. This is the root folder for all outputs."""
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
def voxel2fixel_params(
|
|
122
|
+
image_in: InputPathType,
|
|
123
|
+
fixel_directory_in: InputPathType,
|
|
124
|
+
fixel_directory_out: str,
|
|
125
|
+
fixel_data_out: str,
|
|
126
|
+
info: bool = False,
|
|
127
|
+
quiet: bool = False,
|
|
128
|
+
debug: bool = False,
|
|
129
|
+
force: bool = False,
|
|
130
|
+
nthreads: int | None = None,
|
|
131
|
+
config: list[Voxel2fixelConfigParameters] | None = None,
|
|
132
|
+
help_: bool = False,
|
|
133
|
+
version: bool = False,
|
|
134
|
+
) -> Voxel2fixelParameters:
|
|
135
|
+
"""
|
|
136
|
+
Build parameters.
|
|
137
|
+
|
|
138
|
+
Args:
|
|
139
|
+
image_in: the input image.
|
|
140
|
+
fixel_directory_in: the input fixel directory. Used to define the\
|
|
141
|
+
fixels and their directions.
|
|
142
|
+
fixel_directory_out: the fixel directory where the output will be\
|
|
143
|
+
written. This can be the same as the input directory if desired.
|
|
144
|
+
fixel_data_out: the name of the fixel data image.
|
|
145
|
+
info: display information messages.
|
|
146
|
+
quiet: do not display information messages or progress status;\
|
|
147
|
+
alternatively, this can be achieved by setting the MRTRIX_QUIET\
|
|
148
|
+
environment variable to a non-empty string.
|
|
149
|
+
debug: display debugging messages.
|
|
150
|
+
force: force overwrite of output files (caution: using the same file as\
|
|
151
|
+
input and output might cause unexpected behaviour).
|
|
152
|
+
nthreads: use this number of threads in multi-threaded applications\
|
|
153
|
+
(set to 0 to disable multi-threading).
|
|
154
|
+
config: temporarily set the value of an MRtrix config file entry.
|
|
155
|
+
help_: display this information page and exit.
|
|
156
|
+
version: display version information and exit.
|
|
157
|
+
Returns:
|
|
158
|
+
Parameter dictionary
|
|
159
|
+
"""
|
|
160
|
+
params = {
|
|
161
|
+
"__STYXTYPE__": "voxel2fixel",
|
|
162
|
+
"info": info,
|
|
163
|
+
"quiet": quiet,
|
|
164
|
+
"debug": debug,
|
|
165
|
+
"force": force,
|
|
166
|
+
"help": help_,
|
|
167
|
+
"version": version,
|
|
168
|
+
"image_in": image_in,
|
|
169
|
+
"fixel_directory_in": fixel_directory_in,
|
|
170
|
+
"fixel_directory_out": fixel_directory_out,
|
|
171
|
+
"fixel_data_out": fixel_data_out,
|
|
172
|
+
}
|
|
173
|
+
if nthreads is not None:
|
|
174
|
+
params["nthreads"] = nthreads
|
|
175
|
+
if config is not None:
|
|
176
|
+
params["config"] = config
|
|
177
|
+
return params
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
def voxel2fixel_cargs(
|
|
181
|
+
params: Voxel2fixelParameters,
|
|
182
|
+
execution: Execution,
|
|
183
|
+
) -> list[str]:
|
|
184
|
+
"""
|
|
185
|
+
Build command-line arguments from parameters.
|
|
186
|
+
|
|
187
|
+
Args:
|
|
188
|
+
params: The parameters.
|
|
189
|
+
execution: The execution object for resolving input paths.
|
|
190
|
+
Returns:
|
|
191
|
+
Command-line arguments.
|
|
192
|
+
"""
|
|
193
|
+
cargs = []
|
|
194
|
+
cargs.append("voxel2fixel")
|
|
195
|
+
if params.get("info"):
|
|
196
|
+
cargs.append("-info")
|
|
197
|
+
if params.get("quiet"):
|
|
198
|
+
cargs.append("-quiet")
|
|
199
|
+
if params.get("debug"):
|
|
200
|
+
cargs.append("-debug")
|
|
201
|
+
if params.get("force"):
|
|
202
|
+
cargs.append("-force")
|
|
203
|
+
if params.get("nthreads") is not None:
|
|
204
|
+
cargs.extend([
|
|
205
|
+
"-nthreads",
|
|
206
|
+
str(params.get("nthreads"))
|
|
207
|
+
])
|
|
208
|
+
if params.get("config") is not None:
|
|
209
|
+
cargs.extend([a for c in [dyn_cargs(s["__STYXTYPE__"])(s, execution) for s in params.get("config")] for a in c])
|
|
210
|
+
if params.get("help"):
|
|
211
|
+
cargs.append("-help")
|
|
212
|
+
if params.get("version"):
|
|
213
|
+
cargs.append("-version")
|
|
214
|
+
cargs.append(execution.input_file(params.get("image_in")))
|
|
215
|
+
cargs.append(execution.input_file(params.get("fixel_directory_in")))
|
|
216
|
+
cargs.append(params.get("fixel_directory_out"))
|
|
217
|
+
cargs.append(params.get("fixel_data_out"))
|
|
218
|
+
return cargs
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
def voxel2fixel_outputs(
|
|
222
|
+
params: Voxel2fixelParameters,
|
|
223
|
+
execution: Execution,
|
|
224
|
+
) -> Voxel2fixelOutputs:
|
|
225
|
+
"""
|
|
226
|
+
Build outputs object containing output file paths and possibly stdout/stderr.
|
|
227
|
+
|
|
228
|
+
Args:
|
|
229
|
+
params: The parameters.
|
|
230
|
+
execution: The execution object for resolving input paths.
|
|
231
|
+
Returns:
|
|
232
|
+
Outputs object.
|
|
233
|
+
"""
|
|
234
|
+
ret = Voxel2fixelOutputs(
|
|
235
|
+
root=execution.output_file("."),
|
|
236
|
+
)
|
|
237
|
+
return ret
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
def voxel2fixel_execute(
|
|
241
|
+
params: Voxel2fixelParameters,
|
|
242
|
+
execution: Execution,
|
|
243
|
+
) -> Voxel2fixelOutputs:
|
|
244
|
+
"""
|
|
245
|
+
Map the scalar value in each voxel to all fixels within that voxel.
|
|
246
|
+
|
|
247
|
+
This command is designed to enable CFE-based statistical analysis to be
|
|
248
|
+
performed on voxel-wise measures.
|
|
249
|
+
|
|
250
|
+
References:
|
|
251
|
+
|
|
252
|
+
.
|
|
253
|
+
|
|
254
|
+
Author: MRTrix3 Developers
|
|
255
|
+
|
|
256
|
+
URL: https://www.mrtrix.org/
|
|
257
|
+
|
|
258
|
+
Args:
|
|
259
|
+
params: The parameters.
|
|
260
|
+
execution: The execution object.
|
|
261
|
+
Returns:
|
|
262
|
+
NamedTuple of outputs (described in `Voxel2fixelOutputs`).
|
|
263
|
+
"""
|
|
264
|
+
params = execution.params(params)
|
|
265
|
+
cargs = voxel2fixel_cargs(params, execution)
|
|
266
|
+
ret = voxel2fixel_outputs(params, execution)
|
|
267
|
+
execution.run(cargs)
|
|
268
|
+
return ret
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
def voxel2fixel(
|
|
272
|
+
image_in: InputPathType,
|
|
273
|
+
fixel_directory_in: InputPathType,
|
|
274
|
+
fixel_directory_out: str,
|
|
275
|
+
fixel_data_out: str,
|
|
276
|
+
info: bool = False,
|
|
277
|
+
quiet: bool = False,
|
|
278
|
+
debug: bool = False,
|
|
279
|
+
force: bool = False,
|
|
280
|
+
nthreads: int | None = None,
|
|
281
|
+
config: list[Voxel2fixelConfigParameters] | None = None,
|
|
282
|
+
help_: bool = False,
|
|
283
|
+
version: bool = False,
|
|
284
|
+
runner: Runner | None = None,
|
|
285
|
+
) -> Voxel2fixelOutputs:
|
|
286
|
+
"""
|
|
287
|
+
Map the scalar value in each voxel to all fixels within that voxel.
|
|
288
|
+
|
|
289
|
+
This command is designed to enable CFE-based statistical analysis to be
|
|
290
|
+
performed on voxel-wise measures.
|
|
291
|
+
|
|
292
|
+
References:
|
|
293
|
+
|
|
294
|
+
.
|
|
295
|
+
|
|
296
|
+
Author: MRTrix3 Developers
|
|
297
|
+
|
|
298
|
+
URL: https://www.mrtrix.org/
|
|
299
|
+
|
|
300
|
+
Args:
|
|
301
|
+
image_in: the input image.
|
|
302
|
+
fixel_directory_in: the input fixel directory. Used to define the\
|
|
303
|
+
fixels and their directions.
|
|
304
|
+
fixel_directory_out: the fixel directory where the output will be\
|
|
305
|
+
written. This can be the same as the input directory if desired.
|
|
306
|
+
fixel_data_out: the name of the fixel data image.
|
|
307
|
+
info: display information messages.
|
|
308
|
+
quiet: do not display information messages or progress status;\
|
|
309
|
+
alternatively, this can be achieved by setting the MRTRIX_QUIET\
|
|
310
|
+
environment variable to a non-empty string.
|
|
311
|
+
debug: display debugging messages.
|
|
312
|
+
force: force overwrite of output files (caution: using the same file as\
|
|
313
|
+
input and output might cause unexpected behaviour).
|
|
314
|
+
nthreads: use this number of threads in multi-threaded applications\
|
|
315
|
+
(set to 0 to disable multi-threading).
|
|
316
|
+
config: temporarily set the value of an MRtrix config file entry.
|
|
317
|
+
help_: display this information page and exit.
|
|
318
|
+
version: display version information and exit.
|
|
319
|
+
runner: Command runner.
|
|
320
|
+
Returns:
|
|
321
|
+
NamedTuple of outputs (described in `Voxel2fixelOutputs`).
|
|
322
|
+
"""
|
|
323
|
+
runner = runner or get_global_runner()
|
|
324
|
+
execution = runner.start_execution(VOXEL2FIXEL_METADATA)
|
|
325
|
+
params = voxel2fixel_params(
|
|
326
|
+
info=info,
|
|
327
|
+
quiet=quiet,
|
|
328
|
+
debug=debug,
|
|
329
|
+
force=force,
|
|
330
|
+
nthreads=nthreads,
|
|
331
|
+
config=config,
|
|
332
|
+
help_=help_,
|
|
333
|
+
version=version,
|
|
334
|
+
image_in=image_in,
|
|
335
|
+
fixel_directory_in=fixel_directory_in,
|
|
336
|
+
fixel_directory_out=fixel_directory_out,
|
|
337
|
+
fixel_data_out=fixel_data_out,
|
|
338
|
+
)
|
|
339
|
+
return voxel2fixel_execute(params, execution)
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
__all__ = [
|
|
343
|
+
"VOXEL2FIXEL_METADATA",
|
|
344
|
+
"Voxel2fixelConfigParameters",
|
|
345
|
+
"Voxel2fixelOutputs",
|
|
346
|
+
"Voxel2fixelParameters",
|
|
347
|
+
"voxel2fixel",
|
|
348
|
+
"voxel2fixel_config_params",
|
|
349
|
+
"voxel2fixel_params",
|
|
350
|
+
]
|