File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
pydra/tasks/mrtrix3/manual Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -228,13 +228,15 @@ class MrCalc(specs.ShellDef["MrCalc.Outputs"]):
228
228
"uint8" ,
229
229
"bit" ,
230
230
],
231
+ default = None ,
231
232
)
232
233
233
234
# Standard options
234
235
235
236
info : bool = shell .arg (
236
237
argstr = "-info" ,
237
238
help = """display information messages.""" ,
239
+ default = False ,
238
240
)
239
241
240
242
quiet : bool = shell .arg (
@@ -244,11 +246,13 @@ class MrCalc(specs.ShellDef["MrCalc.Outputs"]):
244
246
"this can be achieved by setting the MRTRIX_QUIET environment variable to "
245
247
"a non-empty string."
246
248
),
249
+ default = False ,
247
250
)
248
251
249
252
debug : bool = shell .arg (
250
253
argstr = "-debug" ,
251
254
help = """display debugging messages.""" ,
255
+ default = False ,
252
256
)
253
257
254
258
force : bool = shell .arg (
@@ -257,6 +261,7 @@ class MrCalc(specs.ShellDef["MrCalc.Outputs"]):
257
261
"force overwrite of output files (caution: using the same file as input and "
258
262
"output might cause unexpected behaviour)."
259
263
),
264
+ default = False ,
260
265
)
261
266
262
267
nthreads : int = shell .arg (
@@ -265,6 +270,7 @@ class MrCalc(specs.ShellDef["MrCalc.Outputs"]):
265
270
"use this number of threads in multi-threaded applications (set to 0 to "
266
271
"disable multi-threading)."
267
272
),
273
+ default = None ,
268
274
)
269
275
270
276
config : MultiInputObj [tuple [str , str ]] = shell .arg (
@@ -275,11 +281,13 @@ class MrCalc(specs.ShellDef["MrCalc.Outputs"]):
275
281
help : bool = shell .arg (
276
282
argstr = "-help" ,
277
283
help = """display this information page and exit.""" ,
284
+ default = False ,
278
285
)
279
286
280
287
version : bool = shell .arg (
281
288
argstr = "-version" ,
282
289
help = """display version information and exit.""" ,
290
+ default = False ,
283
291
)
284
292
285
293
class Outputs (specs .ShellOutputs ):
You can’t perform that action at this time.
0 commit comments