Skip to content

Commit a43c186

Browse files
committed
Still correcting test
1 parent 5d42d7a commit a43c186

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

nipype/interfaces/elastix/registration.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# @Author: oesteban - code@oscaresteban.es
77
# @Date: 2014-06-02 12:06:50
88
# @Last Modified by: oesteban
9-
# @Last Modified time: 2014-06-05 13:33:11
9+
# @Last Modified time: 2014-06-05 13:49:36
1010
"""The :py:mod:`nipype.interfaces.elastix` provides the interface to
1111
the elastix registration software.
1212
@@ -204,10 +204,10 @@ def _list_outputs(self):
204204

205205

206206
class PointsWarpInputSpec(ElastixBaseInputSpec):
207-
transform_file = File(exists=True, mandatory=True, argstr='-tp %s',
208-
desc='transform-parameter file, only 1')
209207
points_file = File(exists=True, argstr='-def %s', mandatory=True,
210208
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')
211211

212212

213213

@@ -225,7 +225,7 @@ class PointsWarp(CommandLine):
225225
>>> reg.inputs.points_file = 'surf1.vtk'
226226
>>> reg.inputs.transform_file = 'TransformParameters.0.txt'
227227
>>> reg.cmdline
228-
'transformix -def surf.vtk -out ./ -tp TransformParameters.0.txt'
228+
'transformix -out ./ -def surf.vtk -tp TransformParameters.0.txt'
229229
"""
230230

231231
_cmd = 'transformix'

0 commit comments

Comments
 (0)