Skip to content

Commit 2d4e015

Browse files
committed
ENH: update LoganRef interface to Logan (reference modeling is not used, so unclear definition)
1 parent 27296e4 commit 2d4e015

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nipype/interfaces/freesurfer/petsurfer.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ class MRTM2(GLMFit):
633633
input_spec = MRTM2InputSpec
634634

635635

636-
class LoganRefInputSpec(GLMFitInputSpec):
636+
class LoganInputSpec(GLMFitInputSpec):
637637
logan = traits.Tuple(
638638
File(exists=True),
639639
File(exists=True),
@@ -644,16 +644,16 @@ class LoganRefInputSpec(GLMFitInputSpec):
644644
)
645645

646646

647-
class LoganRef(GLMFit):
648-
"""Perform Logan reference kinetic modeling.
647+
class Logan(GLMFit):
648+
"""Perform Logan kinetic modeling.
649649
Examples
650650
--------
651-
>>> logan = LoganRef()
651+
>>> logan = Logan()
652652
>>> logan.inputs.in_file = 'tac.nii'
653653
>>> logan.inputs.logan = ('ref_tac.dat', 'timing.dat', 2600)
654654
>>> logan.inputs.glm_dir = 'logan'
655655
>>> logan.cmdline
656656
'mri_glmfit --glmdir logan --y tac.nii --logan ref_tac.dat timing.dat 2600'
657657
"""
658658

659-
input_spec = LoganRefInputSpec
659+
input_spec = LoganInputSpec

0 commit comments

Comments
 (0)