Skip to content

Commit 7f38790

Browse files
committed
Add to init.
1 parent 50f47c2 commit 7f38790

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

nipype/interfaces/freesurfer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
MRIFill, MRIsInflate, Sphere, FixTopology, EulerNumber,
2222
RemoveIntersection, MakeSurfaces, Curvature, CurvatureStats,
2323
Jacobian, MRIsCalc, VolumeMask, ParcellationStats, Contrast,
24-
RelabelHypointensities, Aparc2Aseg, Apas2Aseg, MRIsExpand)
24+
RelabelHypointensities, Aparc2Aseg, Apas2Aseg, MRIsExpand, MRIsCombine)
2525
from .longitudinal import (RobustTemplate, FuseSegmentations)
2626
from .registration import (MPRtoMNI305, RegisterAVItoTalairach, EMRegister, Register,
2727
Paint)

nipype/interfaces/freesurfer/tests/test_auto_MRIsCombine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ def test_MRIsCombine_inputs():
1414
),
1515
in_file1=dict(argstr='--combinesurfs %s',
1616
mandatory=True,
17-
position=0,
17+
position=1,
1818
),
1919
in_file2=dict(argstr='%s',
2020
mandatory=True,
21-
position=1,
21+
position=2,
2222
),
2323
out_file=dict(argstr='%s',
2424
genfile=True,

nipype/interfaces/freesurfer/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -958,10 +958,10 @@ class MRIsCombineInputSpec(FSTraitedSpec):
958958
"""
959959
Uses Freesurfer's mris_convert to combine two surface files into one.
960960
"""
961-
in_file1 = File(exists=True, mandatory=True, position=0,
961+
in_file1 = File(exists=True, mandatory=True, position=1,
962962
argstr='--combinesurfs %s',
963963
desc='File to be combined with in_file2')
964-
in_file2 = File(exists=True, mandatory=True, position=1,
964+
in_file2 = File(exists=True, mandatory=True, position=2,
965965
argstr='%s',
966966
desc='File to be combined with in_file1')
967967
out_file = File(argstr='%s', position=-1, genfile=True,

0 commit comments

Comments
 (0)