Skip to content

Commit 27296e4

Browse files
committed
ENH: update naming of MRTM interface to MRTM1 (more clear definition)
1 parent 8750fd8 commit 27296e4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: nipype/interfaces/freesurfer/petsurfer.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ def _list_outputs(self):
581581
return outputs
582582

583583

584-
class MRTMInputSpec(GLMFitInputSpec):
584+
class MRTM1InputSpec(GLMFitInputSpec):
585585
mrtm1 = traits.Tuple(
586586
File(exists=True),
587587
File(exists=True),
@@ -591,20 +591,20 @@ class MRTMInputSpec(GLMFitInputSpec):
591591
)
592592

593593

594-
class MRTM(GLMFit):
594+
class MRTM1(GLMFit):
595595
"""Perform MRTM1 kinetic modeling.
596596
597597
Examples
598598
--------
599-
>>> mrtm = MRTM()
599+
>>> mrtm = MRTM1()
600600
>>> mrtm.inputs.in_file = 'tac.nii'
601601
>>> mrtm.inputs.mrtm1 = ('ref_tac.dat', 'timing.dat')
602602
>>> mrtm.inputs.glm_dir = 'mrtm'
603603
>>> mrtm.cmdline
604604
'mri_glmfit --glmdir mrtm --y tac.nii --mrtm1 ref_tac.dat timing.dat'
605605
"""
606606

607-
input_spec = MRTMInputSpec
607+
input_spec = MRTM1InputSpec
608608

609609

610610
class MRTM2InputSpec(GLMFitInputSpec):

0 commit comments

Comments
 (0)