Skip to content

Commit 0e0d600

Browse files
authored
Merge pull request #3663 from GalKepler/tensor2metric
Changed inheritence of TensorMetricsInputSpec
2 parents 0375126 + dd2d342 commit 0e0d600

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

nipype/interfaces/mrtrix3/tests/test_auto_TensorMetrics.py

+30
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ def test_TensorMetrics_inputs():
77
args=dict(
88
argstr="%s",
99
),
10+
bval_scale=dict(
11+
argstr="-bvalue_scaling %s",
12+
),
1013
component=dict(
1114
argstr="-num %s",
1215
sep=",",
@@ -16,6 +19,22 @@ def test_TensorMetrics_inputs():
1619
nohash=True,
1720
usedefault=True,
1821
),
22+
grad_file=dict(
23+
argstr="-grad %s",
24+
extensions=None,
25+
xor=["grad_fsl"],
26+
),
27+
grad_fsl=dict(
28+
argstr="-fslgrad %s %s",
29+
xor=["grad_file"],
30+
),
31+
in_bval=dict(
32+
extensions=None,
33+
),
34+
in_bvec=dict(
35+
argstr="-fslgrad %s %s",
36+
extensions=None,
37+
),
1938
in_file=dict(
2039
argstr="%s",
2140
extensions=None,
@@ -29,6 +48,10 @@ def test_TensorMetrics_inputs():
2948
modulate=dict(
3049
argstr="-modulate %s",
3150
),
51+
nthreads=dict(
52+
argstr="-nthreads %d",
53+
nohash=True,
54+
),
3255
out_ad=dict(
3356
argstr="-ad %s",
3457
extensions=None,
@@ -37,6 +60,13 @@ def test_TensorMetrics_inputs():
3760
argstr="-adc %s",
3861
extensions=None,
3962
),
63+
out_bval=dict(
64+
extensions=None,
65+
),
66+
out_bvec=dict(
67+
argstr="-export_grad_fsl %s %s",
68+
extensions=None,
69+
),
4070
out_cl=dict(
4171
argstr="-cl %s",
4272
extensions=None,

nipype/interfaces/mrtrix3/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ def _list_outputs(self):
318318
return outputs
319319

320320

321-
class TensorMetricsInputSpec(CommandLineInputSpec):
321+
class TensorMetricsInputSpec(MRTrix3BaseInputSpec):
322322
in_file = File(
323323
exists=True,
324324
argstr="%s",

0 commit comments

Comments
 (0)