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):
820
820
"recon_all" ,
821
821
argstr = "-subjid %s" ,
822
822
desc = "subject name" ,
823
- xor = ["base_template_id" ,"longitudinal_timepoint_id" ],
823
+ xor = ["base_template_id" , "longitudinal_timepoint_id" ],
824
824
)
825
825
directive = traits .Enum (
826
826
"all" ,
@@ -846,13 +846,17 @@ class ReconAllInputSpec(CommandLineInputSpec):
846
846
usedefault = True ,
847
847
position = 0 ,
848
848
)
849
- hemi = traits .Enum ("lh" , "rh" ,
849
+ hemi = traits .Enum (
850
+ "lh" ,
851
+ "rh" ,
850
852
desc = "hemisphere to process" ,
851
853
argstr = "-hemi %s" ,
852
854
requires = ["subject_id" ],
853
855
)
854
856
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" ,
856
860
requires = ["subject_id" ],
857
861
)
858
862
T2_file = File (
@@ -963,7 +967,7 @@ class ReconAllInputSpec(CommandLineInputSpec):
963
967
position = 1 ,
964
968
)
965
969
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
967
971
)
968
972
969
973
# Expert options
You can’t perform that action at this time.
0 commit comments