8000 ENH: Update PETsurfer interface by mnoergaard · Pull Request #3602 · nipy/nipype · GitHub
[go: up one dir, main page]

Skip to content

ENH: Update PETsurfer interface #3602

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Mar 20, 2024
Prev Previous commit
Next Next commit
ENH: update naming of MRTM interface to MRTM1 (more clear definition)
  • Loading branch information
mnoergaard authored and effigies committed Mar 4, 2024
commit f66b50ff84fb993b47b6493af83ecae4980dc9b6
8 changes: 4 additions & 4 deletions nipype/interfaces/freesurfer/petsurfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ def _list_outputs(self):
return outputs


class MRTMInputSpec(GLMFitInputSpec):
class MRTM1InputSpec(GLMFitInputSpec):
mrtm1 = traits.Tuple(
File(exists=True),
File(exists=True),
Expand All @@ -591,20 +591,20 @@ class MRTMInputSpec(GLMFitInputSpec):
)


class MRTM(GLMFit):
class MRTM1(GLMFit):
"""Perform MRTM1 kinetic modeling.

Examples
--------
>>> mrtm = MRTM()
>>> mrtm = MRTM1()
>>> mrtm.inputs.in_file = 'tac.nii'
>>> mrtm.inputs.mrtm1 = ('ref_tac.dat', 'timing.dat')
>>> mrtm.inputs.glm_dir = 'mrtm'
>>> mrtm.cmdline
'mri_glmfit --glmdir mrtm --y tac.nii --mrtm1 ref_tac.dat timing.dat'
"""

input_spec = MRTMInputSpec
input_spec = MRTM1InputSpec


class MRTM2InputSpec(GLMFitInputSpec):
Expand Down
0