Skip to content

Commit f85cf0d

Browse files
authored
Merge pull request #2105 from jdkent/fix/ICA_AROMA_init
FIX: adding ICA_AROMA to fsl __init__.py
2 parents ec67a85 + dad4afe commit f85cf0d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

nipype/interfaces/fsl/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@
3333
from .possum import B0Calc
3434
from .fix import (AccuracyTester, Classifier, Cleaner, FeatureExtractor,
3535
Training, TrainingSetCreator)
36+
from .aroma import ICA_AROMA

nipype/interfaces/fsl/ICA_AROMA.py renamed to nipype/interfaces/fsl/aroma.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class ICA_AROMA(CommandLine):
8787
8888
>>> from nipype.interfaces.fsl import ICA_AROMA
8989
>>> from nipype.testing import example_data
90-
>>> AROMA_obj = ICA_AROMA.ICA_AROMA()
90+
>>> AROMA_obj = ICA_AROMA()
9191
>>> AROMA_obj.inputs.in_file = 'functional.nii'
9292
>>> AROMA_obj.inputs.mat_file = 'func_to_struct.mat'
9393
>>> AROMA_obj.inputs.fnirt_warp_file = 'warpfield.nii'

nipype/interfaces/fsl/tests/test_auto_ICA_AROMA.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT
22
from __future__ import unicode_literals
3-
from ..ICA_AROMA import ICA_AROMA
3+
from ..aroma import ICA_AROMA
44

55

66
def test_ICA_AROMA_inputs():

0 commit comments

Comments
 (0)