Skip to content

Commit b54c79f

Browse files
author
David Ellis
committed
FIX: fixes the order of the outputs for the config method.
1 parent 5245402 commit b54c79f

File tree

1 file changed

+3
-2
lines changed
  • nipype/workflows/smri/freesurfer

1 file changed

+3
-2
lines changed

nipype/workflows/smri/freesurfer/recon.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ def checkarg(arg, default):
159159
return arg
160160
else:
161161
return default
162+
defaultconfig = getdefaultconfig()
162163
# set the default template and classifier files
163164
reg_template = checkarg(reg_template, defaultconfig['registration_template'])
164165
reg_template_withskull = checkarg(reg_template_withskull,
@@ -193,11 +194,11 @@ def checkarg(arg, default):
193194
'rh_classifier2',
194195
'lh_classifier3',
195196
'rh_classifier3',
196-
'lookup_table',
197-
'wm_lookup_table',
198197
'src_subject_id',
199198
'src_subject_dir',
200199
'color_table',
200+
'lookup_table',
201+
'wm_lookup_table',
201202
'awk_file']
202203

203204
config_node = pe.Node(niu.Function(params,

0 commit comments

Comments
 (0)