Skip to content

Commit 5b20a28

Browse files
committed
RF: Rename datasinks so source file magic applies
1 parent c083051 commit 5b20a28

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

fmriprep/workflows/bold/confounds.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -221,14 +221,14 @@ def init_bold_confs_wf(mem_gb, metadata, name="bold_confs_wf"):
221221
name='ds_report_bold_rois', run_without_submitting=True,
222222
mem_gb=DEFAULT_MEMORY_MIN_GB)
223223

224-
ds_warn_acompcor = pe.Node(
224+
ds_report_warn_acompcor = pe.Node(
225225
DerivativesDataSink(suffix='acompcor'),
226-
name='ds_warn_acompcor', run_without_submitting=True,
226+
name='ds_report_warn_acompcor', run_without_submitting=True,
227227
mem_gb=DEFAULT_MEMORY_MIN_GB)
228228

229-
ds_warn_tcompcor = pe.Node(
229+
ds_report_warn_tcompcor = pe.Node(
230230
DerivativesDataSink(suffix='tcompcor'),
231-
name='ds_warn_tcompcor', run_without_submitting=True,
231+
name='ds_report_warn_tcompcor', run_without_submitting=True,
232232
mem_gb=DEFAULT_MEMORY_MIN_GB)
233233

234234
def _pick_csf(files):
@@ -311,8 +311,8 @@ def _pick_wm(files):
311311
(acc_msk, mrg_compcor, [('out', 'in2')]),
312312
(mrg_compcor, rois_plot, [('out', 'in_rois')]),
313313
(rois_plot, ds_report_bold_rois, [('out_report', 'in_file')]),
314-
(acompcor, ds_warn_acompcor, [('out_report', 'in_file')]),
315-
(tcompcor, ds_warn_tcompcor, [('out_report', 'in_file')]),
314+
(acompcor, ds_report_warn_acompcor, [('out_report', 'in_file')]),
315+
(tcompcor, ds_report_warn_tcompcor, [('out_report', 'in_file')]),
316316
])
317317

318318
return workflow

0 commit comments

Comments
 (0)