From 98ffee2585521df1ce7feb83569579ea1dbc495b Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Thu, 16 May 2024 15:38:00 -0400 Subject: [PATCH] Whoops! --- src/fmripost_aroma/workflows/aroma.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/fmripost_aroma/workflows/aroma.py b/src/fmripost_aroma/workflows/aroma.py index 8c623bc..1c7c7c9 100644 --- a/src/fmripost_aroma/workflows/aroma.py +++ b/src/fmripost_aroma/workflows/aroma.py @@ -259,6 +259,7 @@ def init_ica_aroma_wf( ds_report_ica_aroma = pe.Node( DerivativesDataSink( + base_directory=config.execution.fmripost_aroma_dir, source_file=bold_file, datatype='figures', desc='aroma', @@ -289,6 +290,7 @@ def init_ica_aroma_wf( ds_components = pe.Node( DerivativesDataSink( + base_directory=config.execution.fmripost_aroma_dir, source_file=bold_file, datatype='func', desc='melodic', @@ -304,6 +306,7 @@ def init_ica_aroma_wf( ds_mixing = pe.Node( DerivativesDataSink( + base_directory=config.execution.fmripost_aroma_dir, source_file=bold_file, datatype='func', desc='melodic', @@ -319,6 +322,7 @@ def init_ica_aroma_wf( ds_aroma_features = pe.Node( DerivativesDataSink( + base_directory=config.execution.fmripost_aroma_dir, source_file=bold_file, datatype='func', desc='aroma', @@ -339,6 +343,7 @@ def init_ica_aroma_wf( ds_aroma_confounds = pe.Node( DerivativesDataSink( + base_directory=config.execution.fmripost_aroma_dir, source_file=bold_file, datatype='func', desc='melodic', @@ -420,6 +425,7 @@ def init_denoise_wf(bold_file): ds_denoised = pe.Node( DerivativesDataSink( + base_directory=config.execution.fmripost_aroma_dir, source_file=bold_file, desc=f'{denoise_method}Denoised', ),