File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -635,6 +635,13 @@ def _slice_time_ref(value, parser):
635
635
dest = 'run_reconall' ,
636
636
help = 'Disable FreeSurfer surface preprocessing.' ,
637
637
)
638
+ g_fs .add_argument (
639
+ '--fs-no-resume' ,
640
+ action = 'store_true' ,
641
+ dest = 'fs_no_resume' ,
642
+ help = 'EXPERT: Import pre-computed FreeSurfer reconstruction without resuming. '
643
+ 'The user is responsible for ensuring that all necessary files are present.' ,
644
+ )
638
645
639
646
g_carbon = parser .add_argument_group ('Options for carbon usage tracking' )
640
647
g_carbon .add_argument (
Original file line number Diff line number Diff line change @@ -573,6 +573,8 @@ class workflow(_Config):
573
573
"""Run *fieldmap-less* susceptibility-derived distortions estimation."""
574
574
hires = None
575
575
"""Run FreeSurfer ``recon-all`` with the ``-hires`` flag."""
576
+ fs_no_resume = None
577
+ """Adjust pipeline to reuse base template of existing longitudinal freesurfer"""
576
578
ignore = None
577
579
"""Ignore particular steps for *fMRIPrep*."""
578
580
level = None
Original file line number Diff line number Diff line change @@ -321,6 +321,7 @@ def init_single_subject_wf(subject_id: str):
321
321
output_dir = fmriprep_dir ,
322
322
freesurfer = config .workflow .run_reconall ,
323
323
hires = config .workflow .hires ,
324
+ fs_no_resume = config .workflow .fs_no_resume ,
324
325
longitudinal = config .workflow .longitudinal ,
325
326
msm_sulc = msm_sulc ,
326
327
t1w = subject_data ['t1w' ],
You can’t perform that action at this time.
0 commit comments