File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,6 @@ def init_bold_wf(
209
209
"t1w_mask" ,
210
210
"t1w_dseg" ,
211
211
"t1w_tpms" ,
212
- "t2w_preproc" , # Optional
213
212
# FreeSurfer outputs
214
213
"subjects_dir" ,
215
214
"subject_id" ,
@@ -261,7 +260,6 @@ def init_bold_wf(
261
260
('t1w_preproc' , 'inputnode.t1w_preproc' ),
262
261
('t1w_mask' , 'inputnode.t1w_mask' ),
263
262
('t1w_dseg' , 'inputnode.t1w_dseg' ),
264
- ('t2w_preproc' , 'inputnode.t2w_preproc' ),
265
263
('subjects_dir' , 'inputnode.subjects_dir' ),
266
264
('subject_id' , 'inputnode.subject_id' ),
267
265
('fsnative2t1w_xfm' , 'inputnode.fsnative2t1w_xfm' ),
Original file line number Diff line number Diff line change @@ -268,8 +268,6 @@ def init_bold_fit_wf(
268
268
"subjects_dir" ,
269
269
"subject_id" ,
270
270
"fsnative2t1w_xfm" ,
271
- # Optional - improvements if available
272
- "t2w_preproc" ,
273
271
],
274
272
),
275
273
name = "inputnode" ,
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ def bids_root(tmp_path_factory):
105
105
106
106
107
107
def _make_params (
108
- bold2anat_init : str = "t1w " ,
108
+ bold2anat_init : str = "auto " ,
109
109
use_bbr : bool | None = None ,
110
110
dummy_scans : int | None = None ,
111
111
me_output_echos : bool = False ,
@@ -163,6 +163,8 @@ def _make_params(
163
163
),
164
164
[
165
165
_make_params (),
166
+ _make_params (bold2anat_init = "t1w" ),
167
+ _make_params (bold2anat_init = "t2w" ),
166
168
_make_params (bold2anat_init = "header" ),
167
169
_make_params (use_bbr = True ),
168
170
_make_params (use_bbr = False ),
You can’t perform that action at this time.
0 commit comments