@@ -1510,9 +1510,9 @@ def aggregate_outputs(self, runtime=None, needed_outputs=None):
1510
1510
class RegistrationSynQuickInputSpec (ANTSCommandInputSpec ):
1511
1511
dimension = traits .Enum (3 , 2 , argstr = '-d %d' ,
1512
1512
usedefault = True , desc = 'image dimension (2 or 3)' )
1513
- fixed_image = InputMultiPath (File (exists = True ), mandatory = True , argstr = '-f %s' ,
1513
+ fixed_image = InputMultiPath (File (exists = True ), mandatory = True , argstr = '-f %s... ' ,
1514
1514
desc = 'Fixed image or source image or reference image' )
1515
- moving_image = InputMultiPath (File (exists = True ), mandatory = True , argstr = '-m %s' ,
1515
+ moving_image = InputMultiPath (File (exists = True ), mandatory = True , argstr = '-m %s... ' ,
1516
1516
desc = 'Moving image or target image' )
1517
1517
output_prefix = Str ("transform" , usedefault = True , argstr = '-o %s' ,
1518
1518
desc = "A prefix that is prepended to all output files" )
@@ -1577,7 +1577,7 @@ class RegistrationSynQuick(ANTSCommand):
1577
1577
>>> reg.inputs.moving_image = ['moving1.nii', 'moving2.nii']
1578
1578
>>> reg.inputs.num_threads = 2
1579
1579
>>> reg.cmdline
1580
- 'antsRegistrationSynQuick.sh -d 3 -f fixed1.nii fixed2.nii -m moving1.nii moving2.nii -n 2 -o transform -p d -t s'
1580
+ 'antsRegistrationSynQuick.sh -d 3 -f fixed1.nii -f fixed2.nii -m moving1.nii -m moving2.nii -n 2 -o transform -p d -t s'
1581
1581
>>> reg.run() # doctest: +SKIP
1582
1582
"""
1583
1583
0 commit comments