File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
nipype/interfaces/freesurfer Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -638,7 +638,7 @@ class ReconAllInputSpec(CommandLineInputSpec):
638
638
desc = "Set parameters using expert file" )
639
639
subjects_dir = Directory (exists = True , argstr = '-sd %s' , hash_files = False ,
640
640
desc = 'path to subjects directory' , genfile = True )
641
- flags = traits . Either (traits .Str , traits . List , argstr = '%s' , desc = 'additional parameters' )
641
+ flags = InputMultiPath (traits .Str , argstr = '%s' , desc = 'additional parameters' )
642
642
643
643
# Expert options
644
644
talairach = traits .Str (desc = "Flags to pass to talairach commands" , xor = ['expert' ])
@@ -690,10 +690,10 @@ class ReconAll(CommandLine):
690
690
>>> reconall.cmdline # doctest: +ALLOW_UNICODE
691
691
'recon-all -all -i structural.nii -subjid foo -sd .'
692
692
>>> reconall.inputs.flags = "-qcache"
693
- >>> reconall.cmdline # doctest: +IGNORE_UNICODE
693
+ >>> reconall.cmdline # doctest: +ALLOW_UNICODE
694
694
'recon-all -all -i structural.nii -qcache -subjid foo -sd .'
695
695
>>> reconall.inputs.flags = ["-cw256", "-qcache"]
696
- >>> reconall.cmdline # doctest: +IGNORE_UNICODE
696
+ >>> reconall.cmdline # doctest: +ALLOW_UNICODE
697
697
'recon-all -all -i structural.nii -cw256 -qcache -subjid foo -sd .'
698
698
"""
699
699
You can’t perform that action at this time.
0 commit comments