File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ class AllineateInputSpec(AFNICommandInputSpec):
144
144
desc = 'Use a two pass alignment strategy for all volumes, searching '
145
145
'for a large rotation+shift and then refining the alignment.' )
146
146
two_blur = traits .Float (
147
- argstr = '-twoblur' ,
147
+ argstr = '-twoblur %f ' ,
148
148
desc = 'Set the blurring radius for the first pass in mm.' )
149
149
two_first = traits .Bool (
150
150
argstr = '-twofirst' ,
@@ -222,6 +222,18 @@ class AllineateInputSpec(AFNICommandInputSpec):
222
222
'EPI slices, and the base as comprising anatomically '
223
223
'\' true\' images. Only phase-encoding direction image '
224
224
'shearing and scaling will be allowed with this option.' )
225
+ maxrot = traits .Float (
226
+ argstr = '-maxrot %f' ,
227
+ desc = 'Maximum allowed rotation in degrees.' )
228
+ maxshf = traits .Float (
229
+ argstr = '-maxshf %f' ,
230
+ desc = 'Maximum allowed shift in mm.' )
231
+ maxscl = traits .Float (
232
+ argstr = '-maxscl %f' ,
233
+ desc = 'Maximum allowed scaling factor.' )
234
+ maxshr = traits .Float (
235
+ argstr = '-maxshr %f' ,
236
+ desc = 'Maximum allowed shearing factor.' )
225
237
master = File (
226
238
exists = True ,
227
239
argstr = '-master %s' ,
You can’t perform that action at this time.
0 commit comments