@@ -137,17 +137,13 @@ def _bids_filter(value):
137
137
g_bids = parser .add_argument_group ("Options related to BIDS" )
138
138
g_bids .add_argument (
139
139
"--participant-label" ,
140
- "--participant_label" ,
141
- "--participant-labels" ,
142
- "--participant_labels" ,
143
- dest = "participant_label" ,
144
140
action = ParticipantLabelAction ,
145
141
nargs = "+" ,
146
142
help = "A space delimited list of participant identifiers or a single "
147
143
"identifier (the sub- prefix can be removed)." ,
148
144
)
149
145
g_bids .add_argument (
150
- "--session" ,
146
+ "--session-label " ,
151
147
action = "store" ,
152
148
nargs = "*" ,
153
149
type = str ,
@@ -180,9 +176,6 @@ def _bids_filter(value):
180
176
g_perfm = parser .add_argument_group ("Options to handle performance" )
181
177
g_perfm .add_argument (
182
178
"--nprocs" ,
183
- "--n_procs" ,
184
- "--n_cpus" ,
185
- "-n-cpus" ,
186
179
action = "store" ,
187
180
type = PositiveInt ,
188
181
help = """\
@@ -200,7 +193,6 @@ def _bids_filter(value):
200
193
)
201
194
g_perfm .add_argument (
202
195
"--omp-nthreads" ,
203
- "--ants-nthreads" ,
204
196
action = "store" ,
205
197
type = PositiveInt ,
206
198
help = """\
@@ -210,8 +202,6 @@ def _bids_filter(value):
210
202
not be what you want in, e.g., shared systems like a HPC cluster.""" ,
211
203
)
212
204
g_perfm .add_argument (
213
- "--mem" ,
214
- "--mem_gb" ,
215
205
"--mem-gb" ,
216
206
dest = "memory_gb" ,
217
207
action = "store" ,
@@ -222,7 +212,7 @@ def _bids_filter(value):
222
212
"--debug" ,
223
213
action = "store_true" ,
224
214
default = False ,
225
- help = "Initiate in debug mode " ,
215
+ help = "Enable changes to processing to aid in debugging " ,
226
216
)
227
217
g_perfm .add_argument (
228
218
"--pdb" ,
@@ -256,8 +246,9 @@ def _bids_filter(value):
256
246
help = "only find estimable fieldmaps (that is, estimation is not triggered)" ,
257
247
)
258
248
g_outputs .add_argument (
259
- "--fmapless" ,
260
- action = "store_true" ,
249
+ "--no-fmapless" ,
250
+ action = "store_false" ,
251
+ dest = "fieldmapless" ,
261
252
default = False ,
262
253
help = "Allow fieldmap-less estimation" ,
263
254
)
@@ -271,9 +262,9 @@ def _bids_filter(value):
271
262
g_outputs .add_argument (
272
263
"--notrack" ,
273
264
action = "store_true" ,
274
- help = "Opt-out of sending tracking information of this run to the NiPreps developers. This "
275
- " information helps to improve SDCFlows and provides an indicator of real world usage "
276
- " crucial for obtaining funding." ,
265
+ help = "Opt-out of sending tracking information of this run to the NiPreps developers. "
266
+ "This information helps to improve SDCFlows and provides an indicator of "
267
+ "real world usage for obtaining funding." ,
277
268
)
278
269
279
270
return parser
0 commit comments