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-hive
Commits
39df2cfa
Commit
39df2cfa
authored
Aug 28, 2018
by
Matthieu Muffato
Browse files
Added a warning about using too-recent versions of the core API
parent
02838fc6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
modules/Bio/EnsEMBL/Hive/DBSQL/DBConnection.pm
modules/Bio/EnsEMBL/Hive/DBSQL/DBConnection.pm
+8
-0
No files found.
modules/Bio/EnsEMBL/Hive/DBSQL/DBConnection.pm
View file @
39df2cfa
...
...
@@ -40,6 +40,14 @@ use warnings;
use
base
('
Bio::EnsEMBL::DBSQL::DBConnection
');
BEGIN
{
use
Bio::EnsEMBL::
ApiVersion
;
my
$ev
=
software_version
();
if
(
$ev
>
73
)
{
die
"
eHive 1.9 is not compatible with the Ensembl Core API post version 73.
\n
"
.
"
Please downgrade your Ensembl Core API, or upgrade eHive (which in fact then does not need the Ensembl Core API any more).
\n
";
}
}
=head2 url
...
...
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