File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
nipype/interfaces/freesurfer Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
610610class MRTM2InputSpec (GLMFitInputSpec ):
You can’t perform that action at this time.
0 commit comments