Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
fslpy
Commits
0aa6585f
Commit
0aa6585f
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Make imglob work.
parent
67538f10
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl/scripts/imglob.py
+27
-22
27 additions, 22 deletions
fsl/scripts/imglob.py
with
27 additions
and
22 deletions
fsl/scripts/imglob.py
+
27
−
22
View file @
0aa6585f
...
...
@@ -4,16 +4,15 @@
#
# Author: Paul McCarthy <pauldmccarthy@gmail.com>
#
"""
This module defines the ``imglob`` application,
for expanding glob patterns
involving
NIFTI/ANALYZE image file
name
.
"""
This module defines the ``imglob`` application,
which identifies unique
NIFTI/ANALYZE image file
s
.
"""
from
__future__
import
print_function
import
os.path
as
op
import
sys
import
glob
import
itertools
as
it
import
fsl.utils.path
as
fslpath
import
fsl.data.image
as
fslimage
...
...
@@ -29,44 +28,50 @@ groups = fslimage.FILE_GROUPS
def
main
(
argv
=
None
):
"""
The ``imglob`` utility.
Prints image
fi
l
es
which match one or more
s
he
ll-style wildcard pattern
s.
"""
The ``imglob`` utility.
Given a list of file names, identi
fies
and prints
t
he
unique NIFTI/ANALYZE image file
s.
"""
if
argv
is
None
:
argv
=
sys
.
argv
[
1
:]
if
len
(
argv
)
<
1
:
raise
RuntimeError
(
usage
)
print
(
usage
)
return
1
if
argv
[
0
]
==
'
-extension
'
:
output
=
'
primary
'
elif
argv
[
0
]
==
'
-extensions
'
:
output
=
'
all
'
else
:
output
=
'
prefix
'
if
output
==
'
prefix
'
:
pat
tern
s
=
argv
else
:
pat
tern
s
=
argv
[
1
:]
if
output
==
'
prefix
'
:
pat
h
s
=
argv
else
:
pat
h
s
=
argv
[
1
:]
path
s
=
[]
imgfile
s
=
[]
for
pattern
in
patterns
:
# Build a list of all image files (both
# hdr and img and otherwise) that match
for
path
in
paths
:
try
:
imgfiles
.
extend
(
fslimage
.
addExt
(
path
,
unambiguous
=
False
))
except
fslpath
.
PathError
:
continue
hits
=
glob
.
glob
(
pattern
)
hits
=
[
fslimage
.
looksLikeImage
(
h
)
for
h
in
hits
]
if
output
==
'
prefix
'
:
hits
=
fslpath
.
removeDuplicates
(
hits
,
if
output
==
'
prefix
'
:
imgfiles
=
fslpath
.
removeDuplicates
(
imgfiles
,
allowedExts
=
exts
,
fileGroups
=
groups
)
hits
=
[
fslpath
.
removeExt
(
h
,
exts
)
for
h
in
hits
]
elif
output
==
'
primary
'
:
hits
=
fslpath
.
removeDuplicates
(
hits
,
imgfiles
=
[
fslpath
.
removeExt
(
f
,
exts
)
for
f
in
imgfiles
]
elif
output
==
'
primary
'
:
imgfiles
=
fslpath
.
removeDuplicates
(
imgfiles
,
allowedExts
=
exts
,
fileGroups
=
groups
)
paths
.
extend
(
hits
)
imgfiles
=
sorted
(
set
(
imgfiles
))
print
(
'
'
.
join
(
imgfiles
))
print
(
'
'
.
join
(
paths
))
return
0
if
__name__
==
'
__main__
'
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment