@@ -95,8 +95,7 @@ def init_bold_reference_wf(
95
95
Indicates whether the ``pre_mask`` input will be set (and thus, step 1
96
96
should be skipped).
97
97
multiecho : :obj:`bool`
98
- If multiecho data was supplied, data from the first echo
99
- will be selected
98
+ If multiecho data was supplied, data from the first echo will be selected
100
99
name : :obj:`str`
101
100
Name of workflow (default: ``bold_reference_wf``)
102
101
gen_report : :obj:`bool`
@@ -106,6 +105,8 @@ def init_bold_reference_wf(
106
105
------
107
106
bold_file : str
108
107
BOLD series NIfTI file
108
+ all_bold_files : str
109
+ Validated and header-corrected BOLD series; multiple if multi-echo
109
110
bold_mask : bool
110
111
A tentative brain mask to initialize the workflow (requires ``pre_mask``
111
112
parameter set ``True``).
@@ -160,6 +161,7 @@ def init_bold_reference_wf(
160
161
niu .IdentityInterface (
161
162
fields = [
162
163
"bold_file" ,
164
+ "all_bold_files" ,
163
165
"raw_ref_image" ,
164
166
"skip_vols" ,
165
167
"algo_dummy_scans" ,
@@ -212,6 +214,7 @@ def init_bold_reference_wf(
212
214
(gen_avg , outputnode , [("out_file" , "raw_ref_image" )]),
213
215
(get_dummy , outputnode , [("n_dummy" , "algo_dummy_scans" )]),
214
216
(val_bold , outputnode , [(("out_file" , _pop ), "bold_file" ),
217
+ ("out_file" , "all_bold_files" ),
215
218
(("out_report" , _pop ), "validation_report" )]),
216
219
(enhance_and_skullstrip_bold_wf , outputnode , [
217
220
("outputnode.bias_corrected_file" , "ref_image" ),
0 commit comments