Skip to content

Commit 50c8287

Browse files
committed
fix(workflow): set correct desc input to DerivativesDataSink
1 parent ea4726a commit 50c8287

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fmriprep/workflows/bold/confounds.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def init_bold_confs_wf(mem_gb, metadata, return_all_components=False,
293293
metadata_sources=['tCompCor', 'aCompCor']),
294294
name='compcor_plot')
295295
ds_report_compcor = pe.Node(
296-
DerivativesDataSink(suffix='compcor'),
296+
DerivativesDataSink(desc='compcorvar', keep_dtype=True),
297297
name='ds_report_compcor', run_without_submitting=True,
298298
mem_gb=DEFAULT_MEMORY_MIN_GB)
299299

@@ -302,7 +302,7 @@ def init_bold_confs_wf(mem_gb, metadata, return_all_components=False,
302302
ConfoundsCorrelationPlot(reference_column='global_signal', max_dim=70),
303303
name='conf_corr_plot')
304304
ds_report_conf_corr = pe.Node(
305-
DerivativesDataSink(suffix='confounds_correlation'),
305+
DerivativesDataSink(desc='confoundcorr', keep_dtype=True),
306306
name='ds_report_conf_corr', run_without_submitting=True,
307307
mem_gb=DEFAULT_MEMORY_MIN_GB)
308308

0 commit comments

Comments
 (0)