File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -496,19 +496,20 @@ def _bids_filter(value, parser):
496
496
' at https://surfer.nmr.mgh.harvard.edu/registration.html' ,
497
497
)
498
498
g_fs .add_argument (
499
+ '--no-submm-recon' ,
500
+ action = 'store_false' ,
501
+ dest = 'hires' ,
502
+ help = 'Disable sub-millimeter (hires) reconstruction' ,
503
+ )
504
+ fs_mutex = g_fs .add_mutually_exclusive_group ()
505
+ fs_mutex .add_argument (
499
506
'--fs-subjects-dir' ,
500
507
metavar = 'PATH' ,
501
508
type = Path ,
502
509
help = 'Path to existing FreeSurfer subjects directory to reuse. '
503
510
'(default: OUTPUT_DIR/freesurfer)' ,
504
511
)
505
- g_fs .add_argument (
506
- '--no-submm-recon' ,
507
- action = 'store_false' ,
508
- dest = 'hires' ,
509
- help = 'Disable sub-millimeter (hires) reconstruction' ,
510
- )
511
- g_fs .add_argument (
512
+ fs_mutex .add_argument (
512
513
'--fs-no-reconall' ,
513
514
action = 'store_false' ,
514
515
dest = 'run_reconall' ,
You can’t perform that action at this time.
0 commit comments