We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbd5b65 commit 18a7fe5Copy full SHA for 18a7fe5
nipype/interfaces/nipy/preprocess.py
@@ -146,6 +146,11 @@ class FmriRealign4d(BaseInterface):
146
output_spec = FmriRealign4dOutputSpec
147
keywords = ['slice timing', 'motion correction']
148
149
+ def __init__(self, **inputs):
150
+ DeprecationWarning(('Will be deprecated in release 0.13. Please use'
151
+ 'SpaceTimeRealigner'))
152
+ BaseInterface.__init__(self, **inputs)
153
+
154
def _run_interface(self, runtime):
155
from nipy.algorithms.registration import FmriRealign4d as FR4d
156
all_ims = [load_image(fname) for fname in self.inputs.in_file]
0 commit comments