|
1 | 1 | # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- |
2 | 2 | # vi: set ft=python sts=4 ts=4 sw=4 et: |
3 | | -from nipype.interfaces.spm.base import SPMCommandInputSpec, SPMCommand, Info, scans_for_fnames, scans_for_fname |
4 | | -from nipype.interfaces.matlab import MatlabCommand |
5 | | -from nipype.interfaces.base import (TraitedSpec, BaseInterface, |
6 | | - BaseInterfaceInputSpec, isdefined, |
7 | | - OutputMultiPath, InputMultiPath) |
8 | | -from nipype.interfaces.base import File, traits |
9 | | -from nipype.utils.filemanip import split_filename, fname_presuffix, filename_to_list, list_to_filename |
10 | 3 | import os |
11 | 4 | import numpy as np |
12 | 5 |
|
| 6 | +from .base import SPMCommandInputSpec, SPMCommand, Info, scans_for_fnames, scans_for_fname |
| 7 | +from ..matlab import MatlabCommand |
| 8 | +from ..base import (TraitedSpec, BaseInterface, |
| 9 | + BaseInterfaceInputSpec, isdefined, |
| 10 | + OutputMultiPath, InputMultiPath) |
| 11 | +from ..base import File, traits |
| 12 | +from ...utils.filemanip import split_filename, fname_presuffix, filename_to_list, list_to_filename |
| 13 | + |
13 | 14 |
|
14 | 15 | class Analyze2niiInputSpec(SPMCommandInputSpec): |
15 | 16 | analyze_file = File(exists=True, mandatory=True) |
|
0 commit comments