Skip to content

Commit 0d14657

Browse files
authored
Merge pull request #1834 from oesteban/fix/do-not-run-aroma-plots
FIX: Skip plotting step of ICA-AROMA
2 parents 475a9b8 + 39535ce commit 0d14657

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ RUN npm install -g [email protected]
108108

109109
# Installing and setting up ICA_AROMA
110110
RUN mkdir -p /opt/ICA-AROMA && \
111-
curl -sSL "https://github.com/maartenmennes/ICA-AROMA/archive/v0.4.4-beta.tar.gz" \
111+
curl -sSL "https://github.com/oesteban/ICA-AROMA/archive/v0.4.5.tar.gz" \
112112
| tar -xzC /opt/ICA-AROMA --strip-components 1 && \
113113
chmod +x /opt/ICA-AROMA/ICA_AROMA.py
114114
ENV PATH="/opt/ICA-AROMA:$PATH" \
115-
AROMA_VERSION="0.4.4-beta"
115+
AROMA_VERSION="0.4.5"
116116

117117
# Installing and setting up miniconda
118118
RUN curl -sSLO https://repo.continuum.io/miniconda/Miniconda3-4.5.11-Linux-x86_64.sh && \

fmriprep/workflows/bold/confounds.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -680,8 +680,8 @@ def _getusans_func(image, thresh):
680680

681681
# ica_aroma node
682682
ica_aroma = pe.Node(ICA_AROMARPT(
683-
denoise_type='nonaggr', generate_report=True, TR=metadata['RepetitionTime']),
684-
name='ica_aroma')
683+
denoise_type='nonaggr', generate_report=True, TR=metadata['RepetitionTime'],
684+
args='-np'), name='ica_aroma')
685685

686686
add_non_steady_state = pe.Node(niu.Function(function=_add_volumes,
687687
output_names=['bold_add']),

0 commit comments

Comments
 (0)