Skip to content

Commit

Permalink
Mention fMRIPost-AROMA in parser documentation (#3356)
Browse files Browse the repository at this point in the history
Closes #3355.

## Changes proposed in this pull request

- Add description to the deprecated ICA-AROMA argument group in the
parser.
  • Loading branch information
effigies authored Aug 28, 2024
2 parents 75b1ac6 + fe75352 commit 946b71e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion fmriprep/cli/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,13 @@ def _slice_time_ref(value, parser):
help='Disable Multimodal Surface Matching surface registration.',
)

g_aroma = parser.add_argument_group('[DEPRECATED] Options for running ICA_AROMA')
g_aroma = parser.add_argument_group(
'[DEPRECATED] Options for running ICA_AROMA',
description=(
'If you would like to apply ICA-AROMA to fMRIPrep derivatives, '
'please consider using fMRIPost-AROMA (https://fmripost-aroma.readthedocs.io/)'
),
)
g_aroma.add_argument(
'--use-aroma',
action=DeprecatedAction,
Expand Down

0 comments on commit 946b71e

Please sign in to comment.