Skip to content

Commit dd50224

Browse files
committed
adding further options to 3drefit
1 parent d799d7c commit dd50224

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

nipype/interfaces/afni/preprocess.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,20 @@ class RefitInputSpec(CommandLineInputSpec):
169169
argstr='-yorigin %s')
170170
zorigin = traits.Str(desc='z distance for edge voxel offset',
171171
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')
172186

173187

174188
class Refit(CommandLine):

0 commit comments

Comments
 (0)