Skip to content

Commit dbb24ba

Browse files
committed
fix(workflow): Remove use_bbr instances.
1 parent f8a8eb7 commit dbb24ba

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

dmriprep/cli/run.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,6 @@ def build_workflow(opts, retval):
562562
skull_strip_fixed_seed=opts.skull_strip_fixed_seed,
563563
skull_strip_template=opts.skull_strip_template,
564564
subject_list=subject_list,
565-
use_bbr=opts.use_bbr,
566565
use_syn=opts.use_syn_sdc,
567566
work_dir=str(work_dir),
568567
)

dmriprep/workflows/base.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ def init_dmriprep_wf(
4949
skull_strip_fixed_seed,
5050
skull_strip_template,
5151
subject_list,
52-
use_bbr,
5352
use_syn,
5453
work_dir,
5554
):
@@ -88,7 +87,6 @@ def init_dmriprep_wf(
8887
skull_strip_fixed_seed=False,
8988
skull_strip_template=('OASIS30ANTs', {}),
9089
subject_list=['dmripreptest'],
91-
use_bbr=True,
9290
use_syn=True,
9391
work_dir='.',
9492
)
@@ -137,9 +135,6 @@ def init_dmriprep_wf(
137135
run-to-run replicability when used with --omp-nthreads 1
138136
subject_list : list
139137
List of subject labels
140-
use_bbr : bool or None
141-
Enable/disable boundary-based registration refinement.
142-
If ``None``, test BBR result for distortion before accepting.
143138
use_syn : bool
144139
**Experimental**: Enable ANTs SyN-based susceptibility distortion correction (SDC).
145140
If fieldmaps are present and enabled, this is not run, by default.
@@ -179,7 +174,6 @@ def init_dmriprep_wf(
179174
skull_strip_fixed_seed=skull_strip_fixed_seed,
180175
skull_strip_template=skull_strip_template,
181176
subject_id=subject_id,
182-
use_bbr=use_bbr,
183177
use_syn=use_syn,
184178
)
185179

@@ -215,7 +209,6 @@ def init_single_subject_wf(
215209
skull_strip_fixed_seed,
216210
skull_strip_template,
217211
subject_id,
218-
use_bbr,
219212
use_syn,
220213
):
221214
"""
@@ -256,7 +249,6 @@ def init_single_subject_wf(
256249
skull_strip_fixed_seed=False,
257250
skull_strip_template=('OASIS30ANTs', {}),
258251
subject_id='test',
259-
use_bbr=True,
260252
use_syn=True,
261253
)
262254
@@ -306,9 +298,6 @@ def init_single_subject_wf(
306298
and corresponding dictionary of output-space modifiers.
307299
subject_id : str
308300
List of subject labels
309-
use_bbr : bool or None
310-
Enable/disable boundary-based registration refinement.
311-
If ``None``, test BBR result for distortion before accepting.
312301
use_syn : bool
313302
**Experimental**: Enable ANTs SyN-based susceptibility distortion correction (SDC).
314303
If fieldmaps are present and enabled, this is not run, by default.
@@ -476,7 +465,6 @@ def init_single_subject_wf(
476465
# regressors_dvars_th=regressors_dvars_th,
477466
# t2s_coreg=t2s_coreg,
478467
# use_aroma=use_aroma,
479-
# use_bbr=use_bbr,
480468
# use_syn=use_syn,
481469
# )
482470

0 commit comments

Comments
 (0)