From 328a1d02f35097cb364814035e3a412be0a8c140 Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Sat, 4 May 2024 11:15:16 -0400 Subject: [PATCH] Update base.py --- src/fmripost_aroma/workflows/base.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/fmripost_aroma/workflows/base.py b/src/fmripost_aroma/workflows/base.py index c6b228c..7791213 100644 --- a/src/fmripost_aroma/workflows/base.py +++ b/src/fmripost_aroma/workflows/base.py @@ -360,11 +360,16 @@ def init_single_subject_wf(subject_id: str): ) ica_aroma_wf.inputs.inputnode.bold_std = functional_cache["bold_std"] ica_aroma_wf.inputs.inputnode.bold_mask_std = functional_cache["bold_mask_std"] + workflow.add_nodes([ica_aroma_wf]) ica_aroma_wf.inputs.inputnode.movpar_file = functional_cache["movpar_file"] ica_aroma_wf.inputs.inputnode.skip_vols = functional_cache["skip_vols"] ica_aroma_wf.inputs.inputnode.spatial_reference = functional_cache["spatial_reference"] + # Now denoise the native-space BOLD data using ICA-AROMA + + # Now warp the denoised BOLD data to the requested output spaces + return clean_datasinks(workflow)