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

New path function which determines the unique prefix of a file name.

Used by new gifti function relatedFiles
parent 15ecde79
No related branches found
No related tags found
No related merge requests found
...@@ -17,10 +17,12 @@ are available: ...@@ -17,10 +17,12 @@ are available:
:nosignatures: :nosignatures:
GiftiSurface GiftiSurface
extractGiftiSurface loadGiftiSurface
relatedFiles
""" """
import glob
import os.path as op import os.path as op
import nibabel as nib import nibabel as nib
...@@ -49,12 +51,11 @@ class GiftiSurface(mesh.TriangleMesh): ...@@ -49,12 +51,11 @@ class GiftiSurface(mesh.TriangleMesh):
"""Load the given GIFTI file using ``nibabel``, and extracts surface """Load the given GIFTI file using ``nibabel``, and extracts surface
data using the :func:`extractGiftiSurface` function. data using the :func:`extractGiftiSurface` function.
:arg infile: A GIFTI surface file :arg infile: A GIFTI surface file (``*.surf.gii``).
""" """
surfimg = nib.load(infile) surfimg = nib.load(infile)
vertices, indices = extractGiftiSurface(surfimg) vertices, indices = loadGiftiSurface(surfimg)
mesh.TriangleMesh.__init__(self, vertices, indices) mesh.TriangleMesh.__init__(self, vertices, indices)
...@@ -67,10 +68,19 @@ class GiftiSurface(mesh.TriangleMesh): ...@@ -67,10 +68,19 @@ class GiftiSurface(mesh.TriangleMesh):
def loadVertexData(self, dataSource): def loadVertexData(self, dataSource):
"""Attempts to load scalar data associated with each vertex of this """Attempts to load data associated with each vertex of this
``GiftiSurface`` from the given ``dataSource``. ``GiftiSurface`` from the given ``dataSource``.
Currently, only the first ``DataArray`` contained in the
file is returned.
- ``*.func.gii``
- ``*.shape.gii``
- ``*.label.gii``
- ``*.time.gii``
""" """
# TODO support 4D
# TODO make this more robust # TODO make this more robust
norms = nib.load(dataSource) norms = nib.load(dataSource)
return norms.darrays[0].data return norms.darrays[0].data
...@@ -87,7 +97,7 @@ EXTENSION_DESCRIPTIONS = ['GIFTI surface file', 'GIFTI surface file'] ...@@ -87,7 +97,7 @@ EXTENSION_DESCRIPTIONS = ['GIFTI surface file', 'GIFTI surface file']
""" """
def extractGiftiSurface(surfimg): def loadGiftiSurface(surfimg):
"""Extracts surface data from the given ``nibabel.gifti.GiftiImage``. """Extracts surface data from the given ``nibabel.gifti.GiftiImage``.
The image is expected to contain the following``<DataArray>`` elements: The image is expected to contain the following``<DataArray>`` elements:
...@@ -140,3 +150,44 @@ def extractGiftiSurface(surfimg): ...@@ -140,3 +150,44 @@ def extractGiftiSurface(surfimg):
raise ValueError('no array witbh intent "triangle"found') raise ValueError('no array witbh intent "triangle"found')
return vertices, indices return vertices, indices
def relatedFiles(fname):
"""Given a GIFTI file, returns a list of other GIFTI files in the same
directory which appear to be related with the given one. Files which
share the same prefix are assumed to be related to the given file.
"""
try:
# We want to return all files in the same
# directory which have the following name:
#
# [prefix].*.[type].gii
#
# where
# - prefix is the file prefix, and which
# may include periods.
#
# - we don't care about the middle
#
# - type is func, shape, label, or time
# We determine the unique prefix of the
# given file, and back-up to the most
# recent period. Then search for other
# files which have that same (non-unique)
# prefix.
prefix = fslpath.uniquePrefix(fname)
prefix = prefix[:prefix.rfind('.')]
funcs = glob.glob('{}*.func.gii' .format(prefix))
shapes = glob.glob('{}*.shape.gii'.format(prefix))
labels = glob.glob('{}*.label.gii'.format(prefix))
times = glob.glob('{}*.time.gii' .format(prefix))
return funcs + shapes + labels + times
except:
return []
...@@ -19,9 +19,11 @@ paths. ...@@ -19,9 +19,11 @@ paths.
splitExt splitExt
getFileGroup getFileGroup
removeDuplicates removeDuplicates
uniquePrefix
""" """
import glob
import os.path as op import os.path as op
...@@ -404,3 +406,36 @@ def removeDuplicates(paths, allowedExts=None, fileGroups=None): ...@@ -404,3 +406,36 @@ def removeDuplicates(paths, allowedExts=None, fileGroups=None):
unique.append(groupFiles[0]) unique.append(groupFiles[0])
return unique return unique
def uniquePrefix(path):
"""Return the longest prefix for the given file name which unambiguously
identifies it, relative to the other files in the same directory.
Raises a :exc:`ValueError` if a unique prefix could not be found (which
will never happen if the path is valid).
"""
dirname, filename = op.split(path)
idx = 0
prefix = op.join(dirname, filename[0])
hits = glob.glob('{}*'.format(prefix))
while True:
# Found a unique prefix
if len(hits) == 1:
break
# Should never happen if path is valid
elif len(hits) == 0 or idx >= len(filename) - 1:
raise ValueError('No unique prefix for {}'.format(filename))
# Not unique - continue looping
else:
idx += 1
prefix = prefix + filename[idx]
hits = [h for h in hits if h.startswith(prefix)]
return prefix
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