@@ -563,17 +563,6 @@ def _parse_inputs(self, skip=None):
563
563
skip .append ('save_log' )
564
564
return super (FLIRT , self )._parse_inputs (skip = skip )
565
565
566
- class ApplyXfm (ApplyXFM ):
567
- """
568
- .. deprecated:: 0.12.1
569
- Use :py:class:`nipype.interfaces.fsl.ApplyXFM` instead
570
- """
571
- def __init__ (self , ** inputs ):
572
- super (confounds .TSNR , self ).__init__ (** inputs )
573
- warnings .warn (("This interface has been renamed since 0.12.1,"
574
- " please use nipype.interfaces.fsl.ApplyXFM" ),
575
- UserWarning )
576
-
577
566
class ApplyXFMInputSpec (FLIRTInputSpec ):
578
567
apply_xfm = traits .Bool (
579
568
True , argstr = '-applyxfm' , requires = ['in_matrix_file' ],
@@ -604,6 +593,16 @@ class ApplyXFM(FLIRT):
604
593
"""
605
594
input_spec = ApplyXFMInputSpec
606
595
596
+ class ApplyXfm (ApplyXFM ):
597
+ """
598
+ .. deprecated:: 0.12.1
599
+ Use :py:class:`nipype.interfaces.fsl.ApplyXFM` instead
600
+ """
601
+ def __init__ (self , ** inputs ):
602
+ super (confounds .TSNR , self ).__init__ (** inputs )
603
+ warnings .warn (("This interface has been renamed since 0.12.1,"
604
+ " please use nipype.interfaces.fsl.ApplyXFM" ),
605
+ UserWarning )
607
606
608
607
class MCFLIRTInputSpec (FSLCommandInputSpec ):
609
608
in_file = File (exists = True , position = 0 , argstr = "-in %s" , mandatory = True ,
0 commit comments