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

imglob made into a standalone function

parent 7c6ce4a8
No related branches found
No related tags found
No related merge requests found
...@@ -26,24 +26,33 @@ exts = fslimage.ALLOWED_EXTENSIONS ...@@ -26,24 +26,33 @@ exts = fslimage.ALLOWED_EXTENSIONS
groups = fslimage.FILE_GROUPS groups = fslimage.FILE_GROUPS
def main(argv=None): def imglob(paths, output=None):
"""The ``imglob`` utility. Given a list of file names, identifies and prints """Given a list of file names, identifies and returns the unique
the unique NIFTI/ANALYZE image files. NIFTI/ANALYZE image files that exist.
:arg paths: Sequence of paths/prefixes to glob.
:arg output: One of ``'prefix'`` (the default), ``'all'``, or
``'primary'``:
- ``'prefix'``: Returns the files without extensions.
- ``'all'``: Returns all files that match (e.g. both
``.img`` and ``.hdr`` files will be
returned).
- ``'primary'``: Returns only the primary file of each
matching file group, e.g. only the
``.hdr`` file would be returned from
an ``.img``/``.hdr`` pair.
:returns: A sequence of resolved path names, in the form specified
by the ``output`` parameter.
""" """
if argv is None: if output is None:
argv = sys.argv[1:] output = 'prefix'
if len(argv) < 1:
print(usage)
return 1
if argv[0] == '-extension': output = 'primary'
elif argv[0] == '-extensions': output = 'all'
else: output = 'prefix'
if output == 'prefix': paths = argv if output not in ('prefix', 'all', 'primary'):
else: paths = argv[1:] raise ValueError('Unsupported output format: {}'.format(output))
imgfiles = [] imgfiles = []
...@@ -51,6 +60,7 @@ def main(argv=None): ...@@ -51,6 +60,7 @@ def main(argv=None):
# hdr and img and otherwise) that match # hdr and img and otherwise) that match
for path in paths: for path in paths:
try: try:
path = fslimage.removeExt(path)
imgfiles.extend(fslimage.addExt(path, unambiguous=False)) imgfiles.extend(fslimage.addExt(path, unambiguous=False))
except fslpath.PathError: except fslpath.PathError:
continue continue
...@@ -66,9 +76,32 @@ def main(argv=None): ...@@ -66,9 +76,32 @@ def main(argv=None):
allowedExts=exts, allowedExts=exts,
fileGroups=groups) fileGroups=groups)
imgfiles = sorted(set(imgfiles)) return list(sorted(set(imgfiles)))
def main(argv=None):
"""The ``imglob`` application. Given a list of file names, identifies and
prints the unique NIFTI/ANALYZE image files.
"""
if argv is None:
argv = sys.argv[1:]
if len(argv) < 1:
print(usage)
return 1
if argv[0] == '-extension': output = 'primary'
elif argv[0] == '-extensions': output = 'all'
else: output = 'prefix'
if output == 'prefix': paths = argv
else: paths = argv[1:]
imgfiles = imglob(paths, output)
print(' '.join(imgfiles)) if len(imgfiles) > 0:
print(' '.join(imgfiles))
return 0 return 0
......
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