Skip to content

FIX: adding ICA_AROMA to fsl __init__.py #2105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 26, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions nipype/interfaces/fsl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@
from .possum import B0Calc
from .fix import (AccuracyTester, Classifier, Cleaner, FeatureExtractor,
Training, TrainingSetCreator)
from .aroma import ICA_AROMA
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class ICA_AROMA(CommandLine):

>>> from nipype.interfaces.fsl import ICA_AROMA
>>> from nipype.testing import example_data
>>> AROMA_obj = ICA_AROMA.ICA_AROMA()
>>> AROMA_obj = ICA_AROMA()
>>> AROMA_obj.inputs.in_file = 'functional.nii'
>>> AROMA_obj.inputs.mat_file = 'func_to_struct.mat'
>>> AROMA_obj.inputs.fnirt_warp_file = 'warpfield.nii'
Expand Down
2 changes: 1 addition & 1 deletion nipype/interfaces/fsl/tests/test_auto_ICA_AROMA.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT
from __future__ import unicode_literals
from ..ICA_AROMA import ICA_AROMA
from ..aroma import ICA_AROMA


def test_ICA_AROMA_inputs():
Expand Down