@@ -49,7 +49,6 @@ def init_dmriprep_wf(
49
49
skull_strip_fixed_seed ,
50
50
skull_strip_template ,
51
51
subject_list ,
52
- use_bbr ,
53
52
use_syn ,
54
53
work_dir ,
55
54
):
@@ -88,7 +87,6 @@ def init_dmriprep_wf(
88
87
skull_strip_fixed_seed=False,
89
88
skull_strip_template=('OASIS30ANTs', {}),
90
89
subject_list=['dmripreptest'],
91
- use_bbr=True,
92
90
use_syn=True,
93
91
work_dir='.',
94
92
)
@@ -137,9 +135,6 @@ def init_dmriprep_wf(
137
135
run-to-run replicability when used with --omp-nthreads 1
138
136
subject_list : list
139
137
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.
143
138
use_syn : bool
144
139
**Experimental**: Enable ANTs SyN-based susceptibility distortion correction (SDC).
145
140
If fieldmaps are present and enabled, this is not run, by default.
@@ -179,7 +174,6 @@ def init_dmriprep_wf(
179
174
skull_strip_fixed_seed = skull_strip_fixed_seed ,
180
175
skull_strip_template = skull_strip_template ,
181
176
subject_id = subject_id ,
182
- use_bbr = use_bbr ,
183
177
use_syn = use_syn ,
184
178
)
185
179
@@ -215,7 +209,6 @@ def init_single_subject_wf(
215
209
skull_strip_fixed_seed ,
216
210
skull_strip_template ,
217
211
subject_id ,
218
- use_bbr ,
219
212
use_syn ,
220
213
):
221
214
"""
@@ -256,7 +249,6 @@ def init_single_subject_wf(
256
249
skull_strip_fixed_seed=False,
257
250
skull_strip_template=('OASIS30ANTs', {}),
258
251
subject_id='test',
259
- use_bbr=True,
260
252
use_syn=True,
261
253
)
262
254
@@ -306,9 +298,6 @@ def init_single_subject_wf(
306
298
and corresponding dictionary of output-space modifiers.
307
299
subject_id : str
308
300
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.
312
301
use_syn : bool
313
302
**Experimental**: Enable ANTs SyN-based susceptibility distortion correction (SDC).
314
303
If fieldmaps are present and enabled, this is not run, by default.
@@ -476,7 +465,6 @@ def init_single_subject_wf(
476
465
# regressors_dvars_th=regressors_dvars_th,
477
466
# t2s_coreg=t2s_coreg,
478
467
# use_aroma=use_aroma,
479
- # use_bbr=use_bbr,
480
468
# use_syn=use_syn,
481
469
# )
482
470
0 commit comments