File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -989,25 +989,25 @@ class MRIsCombine(FSCommand):
989
989
-------
990
990
991
991
>>> import nipype.interfaces.freesurfer as fs
992
- >>> mris = fs.MRIsConvert ()
992
+ >>> mris = fs.MRIsCombine ()
993
993
>>> mris.inputs.in_file1 = 'lh.pial'
994
994
>>> mris.inputs.in_file2 = 'rh.pial'
995
- >>> mris.inputs.out_file = 'bh.pial '
995
+ >>> mris.inputs.out_file = 'out.stl '
996
996
>>> mris.cmdline # doctest: +ALLOW_UNICODE
997
- 'mris_convert --combine_surfs lh.pial rh.pial bh.pial '
997
+ 'mris_convert --combinesurfs lh.pial rh.pial out.stl '
998
998
>>> mris.run() # doctest: +SKIP
999
999
"""
1000
1000
_cmd = 'mris_convert'
1001
1001
input_spec = MRIsCombineInputSpec
1002
1002
output_spec = MRIsCombineOutputSpec
1003
-
1003
+
1004
1004
def _list_outputs (self ):
1005
1005
outputs = self .output_spec ().get ()
1006
1006
if any (self .inputs .out_file .startswith (pre ) for pre in ['lh.' , 'rh.' ]):
1007
1007
outputs ['out_file' ] = self .inputs .out_file
1008
1008
else :
1009
1009
outputs ['out_file' ] = 'lh.' + self .inputs .out_file
1010
-
1010
+
1011
1011
return outputs
1012
1012
1013
1013
You can’t perform that action at this time.
0 commit comments