Skip to content

Commit 1dee939

Browse files
authored
Merge pull request #3470 from GalBenZvi/dwifslpreproc
ENH: Add inputs to mrtrix3.DWIPreprocInputSpec and remove mandatory annotation for pe_dir
2 parents ff8e514 + 43edc43 commit 1dee939

File tree

3 files changed

+95
-48
lines changed

3 files changed

+95
-48
lines changed

.zenodo.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -892,11 +892,7 @@
892892
"orcid": "0000-0002-5312-6729"
893893
}
894894
],
895-
"keywords": [
896-
"neuroimaging",
897-
"workflow",
898-
"pipeline"
899-
],
895+
"keywords": ["neuroimaging", "workflow", "pipeline"],
900896
"license": "Apache-2.0",
901897
"upload_type": "software"
902898
}

nipype/interfaces/mrtrix3/preprocess.py

+74-31
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,26 @@
55
import os.path as op
66

77
from ..base import (
8-
CommandLineInputSpec,
98
CommandLine,
10-
traits,
11-
TraitedSpec,
9+
CommandLineInputSpec,
10+
Directory,
1211
File,
13-
isdefined,
14-
Undefined,
1512
InputMultiObject,
13+
TraitedSpec,
14+
Undefined,
15+
isdefined,
16+
traits,
1617
)
17-
from .base import MRTrix3BaseInputSpec, MRTrix3Base
18+
from .base import MRTrix3Base, MRTrix3BaseInputSpec
1819

1920

2021
class DWIDenoiseInputSpec(MRTrix3BaseInputSpec):
2122
in_file = File(
22-
exists=True, argstr="%s", position=-2, mandatory=True, desc="input DWI image"
23+
exists=True,
24+
argstr="%s",
25+
position=-2,
26+
mandatory=True,
27+
desc="input DWI image",
2328
)
2429
mask = File(exists=True, argstr="-mask %s", position=1, desc="mask image")
2530
extent = traits.Tuple(
@@ -88,7 +93,11 @@ class DWIDenoise(MRTrix3Base):
8893

8994
class MRDeGibbsInputSpec(MRTrix3BaseInputSpec):
9095
in_file = File(
91-
exists=True, argstr="%s", position=-2, mandatory=True, desc="input DWI image"
96+
exists=True,
97+
argstr="%s",
98+
position=-2,
99+
mandatory=True,
100+
desc="input DWI image",
92101
)
93102
axes = traits.ListInt(
94103
default_value=[0, 1],
@@ -177,7 +186,11 @@ class MRDeGibbs(MRTrix3Base):
177186

178187
class DWIBiasCorrectInputSpec(MRTrix3BaseInputSpec):
179188
in_file = File(
180-
exists=True, argstr="%s", position=-2, mandatory=True, desc="input DWI image"
189+
exists=True,
190+
argstr="%s",
191+
position=-2,
192+
mandatory=True,
193+
desc="input DWI image",
181194
)
182195
in_mask = File(argstr="-mask %s", desc="input mask image for bias field estimation")
183196
use_ants = traits.Bool(
@@ -252,7 +265,11 @@ def _list_outputs(self):
252265

253266
class DWIPreprocInputSpec(MRTrix3BaseInputSpec):
254267
in_file = File(
255-
exists=True, argstr="%s", position=0, mandatory=True, desc="input DWI image"
268+
exists=True,
269+
argstr="%s",
270+
position=0,
271+
mandatory=True,
272+
desc="input DWI image",
256273
)
257274
out_file = File(
258275
"preproc.mif",
@@ -274,7 +291,6 @@ class DWIPreprocInputSpec(MRTrix3BaseInputSpec):
274291
)
275292
pe_dir = traits.Str(
276293
argstr="-pe_dir %s",
277-
mandatory=True,
278294
desc="Specify the phase encoding direction of the input series, can be a signed axis number (e.g. -0, 1, +2), an axis designator (e.g. RL, PA, IS), or NIfTI axis codes (e.g. i-, j, k)",
279295
)
280296
ro_time = traits.Float(
@@ -290,33 +306,49 @@ class DWIPreprocInputSpec(MRTrix3BaseInputSpec):
290306
argstr="-align_seepi",
291307
desc="Achieve alignment between the SE-EPI images used for inhomogeneity field estimation, and the DWIs",
292308
)
293-
eddy_options = traits.Str(
294-
argstr='-eddy_options "%s"',
295-
desc="Manually provide additional command-line options to the eddy command",
309+
json_import = File(
310+
exists=True,
311+
argstr="-json_import %s",
312+
desc="Import image header information from an associated JSON file (may be necessary to determine phase encoding information)",
296313
)
297314
topup_options = traits.Str(
298315
argstr='-topup_options "%s"',
299316
desc="Manually provide additional command-line options to the topup command",
300317
)
301-
export_grad_mrtrix = traits.Bool(
302-
argstr="-export_grad_mrtrix", desc="export new gradient files in mrtrix format"
318+
eddy_options = traits.Str(
319+
argstr='-eddy_options "%s"',
320+
desc="Manually provide additional command-line options to the eddy command",
321+
)
322+
eddy_mask = File(
323+
exists=True,
324+
argstr="-eddy_mask %s",
325+
desc="Provide a processing mask to use for eddy, instead of having dwifslpreproc generate one internally using dwi2mask",
326+
)
327+
eddy_slspec = File(
328+
exists=True,
329+
argstr="-eddy_slspec %s",
330+
desc="Provide a file containing slice groupings for eddy's slice-to-volume registration",
331+
)
332+
eddyqc_text = Directory(
333+
exists=False,
334+
argstr="-eddyqc_text %s",
335+
desc="Copy the various text-based statistical outputs generated by eddy, and the output of eddy_qc (if installed), into an output directory",
303336
)
304-
export_grad_fsl = traits.Bool(
305-
argstr="-export_grad_fsl", desc="export gradient files in FSL format"
337+
eddyqc_all = Directory(
338+
exists=False,
339+
argstr="-eddyqc_all %s",
340+
desc="Copy ALL outputs generated by eddy (including images), and the output of eddy_qc (if installed), into an output directory",
306341
)
307342
out_grad_mrtrix = File(
308343
"grad.b",
309-
argstr="%s",
310-
usedefault=True,
311-
requires=["export_grad_mrtrix"],
312-
desc="name of new gradient file",
344+
argstr="-export_grad_mrtrix %s",
345+
desc="export new gradient files in mrtrix format",
313346
)
314347
out_grad_fsl = traits.Tuple(
315-
File("grad.bvecs", usedefault=True, desc="bvecs"),
316-
File("grad.bvals", usedefault=True, desc="bvals"),
317-
argstr="%s, %s",
318-
requires=["export_grad_fsl"],
319-
desc="Output (bvecs, bvals) gradients FSL format",
348+
File("grad.bvecs", desc="bvecs"),
349+
File("grad.bvals", desc="bvals"),
350+
argstr="-export_grad_fsl %s, %s",
351+
desc="export gradient files in FSL format",
320352
)
321353

322354

@@ -358,7 +390,7 @@ class DWIPreproc(MRTrix3Base):
358390
>>> preproc.inputs.rpe_options = 'none'
359391
>>> preproc.inputs.out_file = "preproc.mif"
360392
>>> preproc.inputs.eddy_options = '--slm=linear --repol' # linear second level model and replace outliers
361-
>>> preproc.inputs.export_grad_mrtrix = True # export final gradient table in MRtrix format
393+
>>> preproc.inputs.out_grad_mrtrix = "grad.b" # export final gradient table in MRtrix format
362394
>>> preproc.inputs.ro_time = 0.165240 # 'TotalReadoutTime' in BIDS JSON metadata files
363395
>>> preproc.inputs.pe_dir = 'j' # 'PhaseEncodingDirection' in BIDS JSON metadata files
364396
>>> preproc.cmdline
@@ -394,7 +426,11 @@ class ResponseSDInputSpec(MRTrix3BaseInputSpec):
394426
desc="response estimation algorithm (multi-tissue)",
395427
)
396428
in_file = File(
397-
exists=True, argstr="%s", position=-5, mandatory=True, desc="input DWI image"
429+
exists=True,
430+
argstr="%s",
431+
position=-5,
432+
mandatory=True,
433+
desc="input DWI image",
398434
)
399435
mtt_file = File(argstr="%s", position=-4, desc="input 5tt image")
400436
wm_file = File(
@@ -518,10 +554,17 @@ class ReplaceFSwithFIRSTInputSpec(CommandLineInputSpec):
518554
desc="input anatomical image",
519555
)
520556
in_t1w = File(
521-
exists=True, argstr="%s", mandatory=True, position=-3, desc="input T1 image"
557+
exists=True,
558+
argstr="%s",
559+
mandatory=True,
560+
position=-3,
561+
desc="input T1 image",
522562
)
523563
in_config = File(
524-
exists=True, argstr="%s", position=-2, desc="connectome configuration file"
564+
exists=True,
565+
argstr="%s",
566+
position=-2,
567+
desc="connectome configuration file",
525568
)
526569

527570
out_file = File(

nipype/interfaces/mrtrix3/tests/test_auto_DWIPreproc.py

+20-12
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,27 @@ def test_DWIPreproc_inputs():
1313
bval_scale=dict(
1414
argstr="-bvalue_scaling %s",
1515
),
16+
eddy_mask=dict(
17+
argstr="-eddy_mask %s",
18+
extensions=None,
19+
),
1620
eddy_options=dict(
1721
argstr='-eddy_options "%s"',
1822
),
23+
eddy_slspec=dict(
24+
argstr="-eddy_slspec %s",
25+
extensions=None,
26+
),
27+
eddyqc_all=dict(
28+
argstr="-eddyqc_all %s",
29+
),
30+
eddyqc_text=dict(
31+
argstr="-eddyqc_text %s",
32+
),
1933
environ=dict(
2034
nohash=True,
2135
usedefault=True,
2236
),
23-
export_grad_fsl=dict(
24-
argstr="-export_grad_fsl",
25-
),
26-
export_grad_mrtrix=dict(
27-
argstr="-export_grad_mrtrix",
28-
),
2937
grad_file=dict(
3038
argstr="-grad %s",
3139
extensions=None,
@@ -52,6 +60,10 @@ def test_DWIPreproc_inputs():
5260
mandatory=True,
5361
position=0,
5462
),
63+
json_import=dict(
64+
argstr="-json_import %s",
65+
extensions=None,
66+
),
5567
nthreads=dict(
5668
argstr="-nthreads %d",
5769
nohash=True,
@@ -71,18 +83,14 @@ def test_DWIPreproc_inputs():
7183
usedefault=True,
7284
),
7385
out_grad_fsl=dict(
74-
argstr="%s, %s",
75-
requires=["export_grad_fsl"],
86+
argstr="-export_grad_fsl %s, %s",
7687
),
7788
out_grad_mrtrix=dict(
78-
argstr="%s",
89+
argstr="-export_grad_mrtrix %s",
7990
extensions=None,
80-
requires=["export_grad_mrtrix"],
81-
usedefault=True,
8291
),
8392
pe_dir=dict(
8493
argstr="-pe_dir %s",
85-
mandatory=True,
8694
),
8795
ro_time=dict(
8896
argstr="-readout_time %f",

0 commit comments

Comments
 (0)