Skip to content
Snippets Groups Projects
Commit ab35b010 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

melodicresults module renamed to melodicanalysis. New (currently empty)

module, melodiclabels, which will contain all stuff related to
IC classification labels.
parent 85d18165
No related branches found
No related tags found
No related merge requests found
:orphan:
fsl.data.melodicanalysis module
===============================
.. automodule:: fsl.data.melodicanalysis
:members:
:undoc-members:
:show-inheritance:
:orphan: :orphan:
fsl.data.melodicresults module fsl.data.melodiclabels module
============================== =============================
.. automodule:: fsl.data.melodicresults .. automodule:: fsl.data.melodiclabels
:members: :members:
:undoc-members: :undoc-members:
:show-inheritance: :show-inheritance:
...@@ -10,8 +10,9 @@ fsl.data package ...@@ -10,8 +10,9 @@ fsl.data package
fsl.data.featdesign fsl.data.featdesign
fsl.data.featimage fsl.data.featimage
fsl.data.image fsl.data.image
fsl.data.melodicanalysis
fsl.data.melodicimage fsl.data.melodicimage
fsl.data.melodicresults fsl.data.melodiclabels
fsl.data.model fsl.data.model
fsl.data.tensorimage fsl.data.tensorimage
......
#!/usr/bin/env python #!/usr/bin/env python
# #
# melodicresults.py - Utility functions for loading/querying the contents of a # melodicanalysis.py - Utility functions for loading/querying the contents of
# MELODIC analysis directory. # a MELODIC analysis directory.
# #
# Author: Paul McCarthy <pauldmccarthy@gmail.com> # Author: Paul McCarthy <pauldmccarthy@gmail.com>
# #
......
...@@ -14,8 +14,8 @@ import os.path as op ...@@ -14,8 +14,8 @@ import os.path as op
import props import props
from . import image as fslimage from . import image as fslimage
from . import melodicresults as melresults from . import melodicanalysis as melanalysis
class MelodicImage(fslimage.Image): class MelodicImage(fslimage.Image):
...@@ -61,7 +61,7 @@ class MelodicImage(fslimage.Image): ...@@ -61,7 +61,7 @@ class MelodicImage(fslimage.Image):
if op.isdir(path): if op.isdir(path):
path = op.join(path, 'melodic_IC') path = op.join(path, 'melodic_IC')
if not melresults.isMelodicImage(path): if not melanalysis.isMelodicImage(path):
raise ValueError('{} does not appear to be a ' raise ValueError('{} does not appear to be a '
'MELODIC component file'.format(path)) 'MELODIC component file'.format(path))
...@@ -69,9 +69,9 @@ class MelodicImage(fslimage.Image): ...@@ -69,9 +69,9 @@ class MelodicImage(fslimage.Image):
meldir = op.dirname(path) meldir = op.dirname(path)
self.__meldir = meldir self.__meldir = meldir
self.__melmix = melresults.getComponentTimeSeries( meldir) self.__melmix = melanalysis.getComponentTimeSeries( meldir)
self.__melFTmix = melresults.getComponentPowerSpectra(meldir) self.__melFTmix = melanalysis.getComponentPowerSpectra(meldir)
self.__melICClass = melresults.MelodicClassification( self) self.__melICClass = melanalysis.MelodicClassification( self)
# Automatically set the # Automatically set the
# TR value if possible # TR value if possible
...@@ -115,24 +115,25 @@ class MelodicImage(fslimage.Image): ...@@ -115,24 +115,25 @@ class MelodicImage(fslimage.Image):
"""Returns the top level analysis, if the melodic analysis for this """Returns the top level analysis, if the melodic analysis for this
``MelodicImage`` is contained within another analysis. Otherwise, ``MelodicImage`` is contained within another analysis. Otherwise,
returns ``None``. See the returns ``None``. See the
:func:`.melodicresults.getTopLevelAnalysisDir` function. :func:`.melodicanalysis.getTopLevelAnalysisDir` function.
""" """
return melresults.getTopLevelAnalysisDir(self.__meldir) return melanalysis.getTopLevelAnalysisDir(self.__meldir)
def getDataFile(self): def getDataFile(self):
"""Returns the file name of the data image from which this """Returns the file name of the data image from which this
``MelodicImage`` was generated, if possible. See the ``MelodicImage`` was generated, if possible. See the
:func:`.melodicresults.getDataFile` function. :func:`.melodicanalysis.getDataFile` function.
""" """
return melresults.getDataFile(self.__meldir) return melanalysis.getDataFile(self.__meldir)
def getMeanFile(self): def getMeanFile(self):
"""Returns the file name of the mean data image associated with this """Returns the file name of the mean data image associated with this
``MelodicImage``. See the :func:`.melodicresults.getMeanFile` function. ``MelodicImage``. See the :func:`.melodicanalysis.getMeanFile`
function.
""" """
return melresults.getMeanFile(self.__meldir) return melanalysis.getMeanFile(self.__meldir)
def getICClassification(self): def getICClassification(self):
......
#!/usr/bin/env python
#
# melodiclabels.py - Loading/saving/managing melodic IC labels.
#
# Author: Paul McCarthy <pauldmccarthy@gmail.com>
#
"""
"""
import logging
log = logging.getLogger(__name__)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment