32
32
)
33
33
from nipype .interfaces .mixins import reporting
34
34
from nipype .interfaces import freesurfer as fs
35
- from nipype .interfaces import fsl , ants
35
+ from nipype .interfaces import fsl
36
+ from nipype .interfaces .ants import registration , resampling
36
37
37
38
from ... import NIWORKFLOWS_LOG
38
39
from . import base as nrb
@@ -82,13 +83,13 @@ def _post_run_hook(self, runtime):
82
83
83
84
84
85
class _ANTSRegistrationInputSpecRPT (
85
- nrb ._SVGReportCapableInputSpec , ants . registration .RegistrationInputSpec
86
+ nrb ._SVGReportCapableInputSpec , registration .RegistrationInputSpec
86
87
):
87
88
pass
88
89
89
90
90
91
class _ANTSRegistrationOutputSpecRPT (
91
- reporting .ReportCapableOutputSpec , ants . registration .RegistrationOutputSpec
92
+ reporting .ReportCapableOutputSpec , registration .RegistrationOutputSpec
92
93
):
93
94
pass
94
95
@@ -110,13 +111,13 @@ def _post_run_hook(self, runtime):
110
111
111
112
112
113
class _ANTSApplyTransformsInputSpecRPT (
113
- nrb ._SVGReportCapableInputSpec , ants . resampling .ApplyTransformsInputSpec
114
+ nrb ._SVGReportCapableInputSpec , resampling .ApplyTransformsInputSpec
114
115
):
115
116
pass
116
117
117
118
118
119
class _ANTSApplyTransformsOutputSpecRPT (
119
- reporting .ReportCapableOutputSpec , ants . resampling .ApplyTransformsOutputSpec
120
+ reporting .ReportCapableOutputSpec , resampling .ApplyTransformsOutputSpec
120
121
):
121
122
pass
122
123
0 commit comments