@@ -566,7 +566,8 @@ class VolregInputSpec(AFNICommandInputSpec):
566
566
oned_file = File (name_template = '%s.1D' , desc = '1D movement parameters output file' ,
567
567
argstr = '-1Dfile %s' ,
568
568
name_source = "in_file" ,
569
- keep_extension = True )
569
+ keep_extension = True ,
570
+ position = - 3 )
570
571
verbose = traits .Bool (desc = 'more detailed description of the process' ,
571
572
argstr = '-verbose' )
572
573
timeshift = traits .Bool (desc = 'time shift to mean slice time offset' ,
@@ -1468,9 +1469,11 @@ class CalcInputSpec(AFNICommandInputSpec):
1468
1469
argstr = '-a %s' , position = 0 , mandatory = True , exists = True )
1469
1470
in_file_b = File (desc = 'operand file to 3dcalc' ,
1470
1471
argstr = ' -b %s' , position = 1 , exists = True )
1472
+ in_file_c = File (desc = 'operand file to 3dcalc' ,
1473
+ argstr = ' -c %s' , position = 2 , exists = True )
1471
1474
out_file = File (name_template = "%s_calc" , desc = 'output image file name' ,
1472
1475
argstr = '-prefix %s' , name_source = "in_file_a" )
1473
- expr = traits .Str (desc = 'expr' , argstr = '-expr "%s"' , position = 2 ,
1476
+ expr = traits .Str (desc = 'expr' , argstr = '-expr "%s"' , position = 3 ,
1474
1477
mandatory = True )
1475
1478
start_idx = traits .Int (desc = 'start index for in_file_a' ,
1476
1479
requires = ['stop_idx' ])
0 commit comments