File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
nipype/interfaces/freesurfer Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -820,7 +820,7 @@ class ReconAllInputSpec(CommandLineInputSpec):
820820 "recon_all" ,
821821 argstr = "-subjid %s" ,
822822 desc = "subject name" ,
823- xor = ["base_template_id" ,"longitudinal_timepoint_id" ],
823+ xor = ["base_template_id" , "longitudinal_timepoint_id" ],
824824 )
825825 directive = traits .Enum (
826826 "all" ,
@@ -846,13 +846,17 @@ class ReconAllInputSpec(CommandLineInputSpec):
846846 usedefault = True ,
847847 position = 0 ,
848848 )
849- hemi = traits .Enum ("lh" , "rh" ,
849+ hemi = traits .Enum (
850+ "lh" ,
851+ "rh" ,
850852 desc = "hemisphere to process" ,
851853 argstr = "-hemi %s" ,
852854 requires = ["subject_id" ],
853855 )
854856 T1_files = InputMultiPath (
855- File (exists = True ), argstr = "-i %s..." , desc = "name of T1 file to process" ,
857+ File (exists = True ),
858+ argstr = "-i %s..." ,
859+ desc = "name of T1 file to process" ,
856860 requires = ["subject_id" ],
857861 )
858862 T2_file = File (
@@ -963,7 +967,7 @@ class ReconAllInputSpec(CommandLineInputSpec):
963967 position = 1 ,
964968 )
965969 longitudinal_template_id = traits .Str (
966- argstr = "%s" , desc = "longitudinal base tempalte id" , position = 2
970+ argstr = "%s" , desc = "longitudinal base template id" , position = 2
967971 )
968972
969973 # Expert options
You can’t perform that action at this time.
0 commit comments