@@ -79,8 +79,6 @@ def get_parser():
79
79
help = 'select a specific task to be processed' )
80
80
81
81
g_perfm = parser .add_argument_group ('Options to handle performance' )
82
- g_perfm .add_argument ('--debug' , action = 'store_true' , default = False ,
83
- help = 'DEPRECATED - Does not do what you want.' )
84
82
g_perfm .add_argument ('--nthreads' , '--n_cpus' , '-n-cpus' , action = 'store' , type = int ,
85
83
help = 'maximum number of threads across all processes' )
86
84
g_perfm .add_argument ('--omp-nthreads' , action = 'store' , type = int , default = 0 ,
@@ -103,6 +101,8 @@ def get_parser():
103
101
'signal' )
104
102
g_perfm .add_argument ("-v" , "--verbose" , dest = "verbose_count" , action = "count" , default = 0 ,
105
103
help = "increases log verbosity for each occurence, debug level is -vvv" )
104
+ g_perfm .add_argument ('--debug' , action = 'store_true' , default = False ,
105
+ help = 'DEPRECATED - Does not do what you want.' )
106
106
107
107
g_conf = parser .add_argument_group ('Workflow configuration' )
108
108
g_conf .add_argument (
@@ -238,9 +238,8 @@ def get_parser():
238
238
'the FMRIPREP developers. This information helps to '
239
239
'improve FMRIPREP and provides an indicator of real '
240
240
'world usage crucial for obtaining funding.' )
241
- g_perfm .add_argument ('--sloppy' , action = 'store_true' , default = False ,
242
- help = 'Use low-quality tools for speed '
243
- '- TESTING ONLY' )
241
+ g_other .add_argument ('--sloppy' , action = 'store_true' , default = False ,
242
+ help = 'Use low-quality tools for speed - TESTING ONLY' )
244
243
245
244
return parser
246
245
0 commit comments