6
6
# @Author: oesteban - code@oscaresteban.es
7
7
# @Date: 2014-06-02 12:06:50
8
8
# @Last Modified by: oesteban
9
- # @Last Modified time: 2014-06-05 13:33:11
9
+ # @Last Modified time: 2014-06-05 13:49:36
10
10
"""The :py:mod:`nipype.interfaces.elastix` provides the interface to
11
11
the elastix registration software.
12
12
@@ -204,10 +204,10 @@ def _list_outputs(self):
204
204
205
205
206
206
class PointsWarpInputSpec (ElastixBaseInputSpec ):
207
- transform_file = File (exists = True , mandatory = True , argstr = '-tp %s' ,
208
- desc = 'transform-parameter file, only 1' )
209
207
points_file = File (exists = True , argstr = '-def %s' , mandatory = True ,
210
208
desc = 'input points (accepts .vtk triangular meshes).' )
209
+ transform_file = File (exists = True , mandatory = True , argstr = '-tp %s' ,
210
+ desc = 'transform-parameter file, only 1' )
211
211
212
212
213
213
@@ -225,7 +225,7 @@ class PointsWarp(CommandLine):
225
225
>>> reg.inputs.points_file = 'surf1.vtk'
226
226
>>> reg.inputs.transform_file = 'TransformParameters.0.txt'
227
227
>>> reg.cmdline
228
- 'transformix -def surf.vtk -out ./ -tp TransformParameters.0.txt'
228
+ 'transformix -out ./ -def surf.vtk -tp TransformParameters.0.txt'
229
229
"""
230
230
231
231
_cmd = 'transformix'
0 commit comments