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.
1 parent d799d7c commit dd50224Copy full SHA for dd50224
nipype/interfaces/afni/preprocess.py
@@ -169,6 +169,20 @@ class RefitInputSpec(CommandLineInputSpec):
169
argstr='-yorigin %s')
170
zorigin = traits.Str(desc='z distance for edge voxel offset',
171
argstr='-zorigin %s')
172
+
173
+ xdel = traits.Float(desc='new x voxel dimension in mm',
174
+ argstr='-xdel %f')
175
176
+ ydel = traits.Float(desc='new y voxel dimension in mm',
177
+ argstr='-ydel %f')
178
179
+ zdel = traits.Float(desc='new z voxel dimension in mm',
180
+ argstr='-zdel %f')
181
182
+ space = traits.Enum('TLRC', 'MNI', 'ORIG',
183
+ argstr='-space %s',
184
+ desc='Associates the dataset with a specific' +
185
+ ' template type, e.g. TLRC, MNI, ORIG')
186
187
188
class Refit(CommandLine):
0 commit comments