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
6b627345
There was a problem fetching the pipeline summary.
Commit
6b627345
authored
8 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
addAtlas method does duplicate check
parent
8e62e716
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl/data/atlases.py
+10
-2
10 additions, 2 deletions
fsl/data/atlases.py
with
10 additions
and
2 deletions
fsl/data/atlases.py
+
10
−
2
View file @
6b627345
...
...
@@ -206,12 +206,21 @@ class AtlasRegistry(notifier.Notifier):
is given a unique id.
"""
filename
=
op
.
abspath
(
filename
)
if
atlasID
is
None
:
atlasIDBase
=
op
.
splitext
(
op
.
basename
(
filename
))[
0
].
lower
()
atlasID
=
atlasIDBase
else
:
atlasIDBase
=
atlasID
# If an atlas with the same ID/path
# already exists, raise an error
atlasDesc
=
self
.
__atlasDescs
.
get
(
atlasID
,
None
)
if
atlasDesc
is
not
None
and
atlasDesc
.
specPath
==
filename
:
raise
KeyError
(
'
{} is already in the atlas
'
'
registry
'
.
format
(
filename
))
# Find a unique atlas ID
i
=
0
while
atlasID
in
self
.
__atlasDescs
:
...
...
@@ -227,8 +236,7 @@ class AtlasRegistry(notifier.Notifier):
self
.
__atlasDescs
[
desc
.
atlasID
]
=
desc
fsldir
=
op
.
join
(
os
.
environ
.
get
(
'
FSLDIR
'
,
None
),
'
data
'
,
'
atlases
'
)
if
not
op
.
abspath
(
filename
).
startswith
(
fsldir
):
if
not
filename
.
startswith
(
fsldir
):
self
.
__updateExtraAtlases
()
self
.
notify
(
value
=
desc
)
...
...
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