Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl
Commits
7f95fd20
Commit
7f95fd20
authored
Nov 23, 2011
by
William McLaren
Browse files
Hack for borked meta keys in variation DBs - will be fixed in 66
parent
3e3cf8dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
modules/Bio/EnsEMBL/DBSQL/BaseMetaContainer.pm
modules/Bio/EnsEMBL/DBSQL/BaseMetaContainer.pm
+6
-1
No files found.
modules/Bio/EnsEMBL/DBSQL/BaseMetaContainer.pm
View file @
7f95fd20
...
...
@@ -401,12 +401,17 @@ sub key_value_exists {
# meta key or not. If the key is either 'patch' or 'schema_version',
# then it is not species-specific.
# FIXME variation team messed up in release 65 and added the ploidy
# entry without species_id - this will be corrected for release 66,
# for now, I've added it to the list of allowed non-species specific
sub
_species_specific_key
{
my
(
$self
,
$key
)
=
@_
;
return
(
$key
ne
'
patch
'
&&
$key
ne
'
schema_version
'
&&
$key
ne
'
schema_type
'
);
&&
$key
ne
'
schema_type
'
&&
$key
ne
'
ploidy
');
}
1
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment