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
6436bc80
Commit
6436bc80
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
New module fsl.utils.assertions, migrated over from Sean's DHCP project.
parent
992a49e9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl/utils/assertions.py
+84
-0
84 additions, 0 deletions
fsl/utils/assertions.py
with
84 additions
and
0 deletions
fsl/utils/assertions.py
0 → 100644
+
84
−
0
View file @
6436bc80
#!/usr/bin/env python
#
# Miscellaneous assertion functions.
#
# Author: Sean Fitzgibbon <sean.fitzgibbon@ndcn.ox.ac.uk
# Paul McCarthy <pauldmccarthy@gmail.com>
#
"""
This module contains a handful of miscellaneous assertion routines.
"""
import
os.path
as
op
import
nibabel
as
nib
def
assertFileExists
(
*
args
):
"""
Raise an exception if the specified file/folder/s do not exist.
"""
for
f
in
args
:
assert
op
.
exists
(
f
),
"
file/folder does not exist: {0}
"
.
format
(
f
)
def
assertIsNifti3D
(
*
args
):
"""
Raise an exception if the specified file/s are not 3D nifti.
"""
for
f
in
args
:
assertIsNifti
(
f
)
d
=
nib
.
load
(
f
)
assert
len
(
d
.
shape
)
==
3
,
\
"
incorrect shape for 3D nifti: {0}:{1}
"
.
format
(
d
.
shape
,
f
)
def
assertIsNifti4D
(
*
args
):
"""
Raise an exception if the specified file/s are not 4D nifti.
"""
for
f
in
args
:
assertIsNifti
(
f
)
d
=
nib
.
load
(
f
)
assert
len
(
d
.
shape
)
==
4
,
\
"
incorrect shape for 4D nifti: {0}:{1}
"
.
format
(
d
.
shape
,
f
)
def
assertIsNifti
(
*
args
):
"""
Raise an exception if the specified file/s are not nifti.
"""
for
f
in
args
:
assert
isinstance
(
f
,
nib
.
nifti1
.
Nifti1Image
)
or
\
f
.
endswith
(
'
.nii.gz
'
)
or
f
.
endswith
(
'
.nii
'
),
\
"
file must be a nifti (.nii or .nii.gz): {0}
"
.
format
(
f
)
def
assertNiftiShape
(
shape
,
*
args
):
"""
Raise an exception if the specified nifti/s are not specified shape.
"""
for
fname
in
args
:
d
=
nib
.
load
(
fname
)
assert
d
.
shape
==
shape
,
\
"
incorrect shape ({2}) for nifti: {0}:{1}
"
.
format
(
d
.
shape
,
fname
,
shape
)
def
assertIsSurfGifti
(
*
args
):
"""
Raise an exception if the specified file/s are not surface gifti.
"""
for
fname
in
args
:
assert
fname
.
endswith
(
'
.surf.gii
'
),
\
"
file must be a surface gifti (surf.gii): {0}
"
.
format
(
fname
)
def
assertIsFuncGifti
(
*
args
):
"""
Raise an exception if the specified file/s are not functional gifti.
"""
for
fname
in
args
:
assert
fname
.
endswith
(
'
.func.gii
'
),
\
"
file must be a functional gifti (func.gii): {0}
"
.
format
(
fname
)
def
assertIsMelodicDir
(
path
):
"""
Raise an exception if the specified path is not a melodic directory.
:arg path: Path to melodic directory
:type path: string
"""
assert
op
.
exists
(
path
),
"
melodic dir does not exist: {0}
"
.
format
(
path
)
assert
path
.
endswith
(
'
.ica
'
),
\
"
melodic directory must end in *.ica: {0}
"
.
format
(
path
)
assert
op
.
exists
(
op
.
join
(
path
,
'
melodic_IC.nii.gz
'
)),
\
"
melodic directy must contain a file called melodic_IC.nii.gz
"
assert
op
.
exists
(
op
.
join
(
path
,
'
melodic_mix
'
)),
\
"
melodic directy must contain a file called melodic_mix
"
assert
op
.
exists
(
op
.
join
(
path
,
'
melodic_FTmix
'
)),
\
"
melodic directy must contain a file called melodic_FTmix
"
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