We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8ce4b9b + c2807b2 commit 48c2b6bCopy full SHA for 48c2b6b
nipype/interfaces/afni/tests/test_auto_Refit.py
@@ -42,6 +42,8 @@ def test_Refit_inputs():
42
),
43
xorigin=dict(argstr='-xorigin %s',
44
45
+ xyzscale=dict(argstr='-xyzscale %f',
46
+ ),
47
ydel=dict(argstr='-ydel %f',
48
49
yorigin=dict(argstr='-yorigin %s',
nipype/interfaces/afni/utils.py
@@ -1821,6 +1821,9 @@ class RefitInputSpec(CommandLineInputSpec):
1821
zdel = traits.Float(
1822
desc='new z voxel dimension in mm',
1823
argstr='-zdel %f')
1824
+ xyzscale = traits.Float(
1825
+ desc='Scale the size of the dataset voxels by the given factor',
1826
+ argstr='-xyzscale %f')
1827
space = traits.Enum(
1828
'TLRC', 'MNI', 'ORIG',
1829
argstr='-space %s',
0 commit comments