Skip to content
Snippets Groups Projects
Commit d9eaabe4 authored by Jessica Severin's avatar Jessica Severin
Browse files

made more Registry friendly by setting -species to be the $dbname

thus allowing one to do hybrid URL/Registry code like...
  if($url) {
    $dbc = Bio::EnsEMBL::Hive::URLFactory->fetch($url, 'compara')->dbc;
    $dbname = $dbc->dbname();
  }
  else { $dbc = Bio::EnsEMBL::Registry->get_DBAdaptor($dbname,'compara')->dbc; }
  $fa = Bio::EnsEMBL::Registry->get_adaptor($dbname,'compara','Family');
parent 1b35d1dc
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,7 @@ my $_URLFactory_global_instance;
package Bio::EnsEMBL::Hive::URLFactory;
use strict;
use Switch;
use Bio::EnsEMBL::Utils::Argument;
use Bio::EnsEMBL::Utils::Exception;
......@@ -195,10 +196,15 @@ sub _get_db_connection
return ($dba,$path) if($dba);
#print("CONNECT via\n user=$user\n pass=$pass\n host=$host\n port=$port\n dbname=$dbname\n path=$path\n type=$type\n");
$module = "Bio::EnsEMBL::DBSQL::DBAdaptor" if($type eq 'core');
$module = "Bio::EnsEMBL::Compara::DBSQL::DBAdaptor" if($type eq 'compara');
$module = "Bio::EnsEMBL::Pipeline::DBSQL::DBAdaptor" if($type eq 'pipeline');
switch ($type) {
case 'core' { $module = "Bio::EnsEMBL::DBSQL::DBAdaptor"; }
case 'pipeline' { $module = "Bio::EnsEMBL::Pipeline::DBSQL::DBAdaptor"; }
case 'compara' {
use Bio::EnsEMBL::Compara::DBSQL::DBAdaptor;
$module = "Bio::EnsEMBL::Compara::DBSQL::DBAdaptor";
}
}
$dba = "$module"->new (
-disconnect_when_inactive => 0,
-driver => 'mysql',
......@@ -206,7 +212,9 @@ sub _get_db_connection
-pass => $pass,
-host => $host,
-port => $port,
-dbname => $dbname);
-dbname => $dbname,
-species => $dbname
);
$_URLFactory_global_instance->{$connectionKey} = $dba;
return ($dba,$path);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment