File tree Expand file tree Collapse file tree 1 file changed +21
-7
lines changed Expand file tree Collapse file tree 1 file changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -509,25 +509,39 @@ def _bids_filter(value, parser):
509
509
help = 'Path to FreeSurfer license key file. Get it (for free) by registering'
510
510
' at https://surfer.nmr.mgh.harvard.edu/registration.html' ,
511
511
)
512
+ # g_fs.add_argument(
513
+ # '--fs-subjects-dir',
514
+ # metavar='PATH',
515
+ # type=Path,
516
+ # help='Path to existing FreeSurfer subjects directory to reuse. '
517
+ # '(default: OUTPUT_DIR/freesurfer)',
518
+ # )
512
519
g_fs .add_argument (
520
+ '--no-submm-recon' ,
521
+ action = 'store_false' ,
522
+ dest = 'hires' ,
523
+ help = 'Disable sub-millimeter (hires) reconstruction' ,
524
+ )
525
+ fs_mutex = g_fs .add_mutually_exclusive_group ()
526
+ fs_mutex .add_argument (
513
527
'--fs-subjects-dir' ,
514
528
metavar = 'PATH' ,
515
529
type = Path ,
516
530
help = 'Path to existing FreeSurfer subjects directory to reuse. '
517
531
'(default: OUTPUT_DIR/freesurfer)' ,
518
532
)
519
- g_fs .add_argument (
520
- '--no-submm-recon' ,
521
- action = 'store_false' ,
522
- dest = 'hires' ,
523
- help = 'Disable sub-millimeter (hires) reconstruction' ,
524
- )
525
- g_fs .add_argument (
533
+ fs_mutex .add_argument (
526
534
'--fs-no-reconall' ,
527
535
action = 'store_false' ,
528
536
dest = 'run_reconall' ,
529
537
help = 'Disable FreeSurfer surface preprocessing.' ,
530
538
)
539
+ # g_fs.add_argument(
540
+ # '--fs-no-reconall',
541
+ # action='store_false',
542
+ # dest='run_reconall',
543
+ # help='Disable FreeSurfer surface preprocessing.',
544
+ # )
531
545
g_fs .add_argument (
532
546
'--fs-no-resume' ,
533
547
action = 'store_true' ,
You can’t perform that action at this time.
0 commit comments