Newer
Older
#
# Ensembl module for Registry
#
# Copyright EMBL/EBI
##
# You may distribute this module under the same terms as perl itself
# POD documentation - main docs before the code
=head1 NAME
Bio::EnsEMBL::Registry
=head1 SYNOPSIS
Ian Longden
committed
Bio::EnsEMBL::Registry->load_all("configuration_file");
$gene_adaptor = Bio::EnsEMBL::Registry->get_adaptor("homo_sapiens","core","gene"))
=head1 DESCRIPTION
All Adaptors are stored/registered using this module. This module should then
be used to get the adaptors needed.
The registry can be loaded from a configuration file using the method load_all.
If a file is passed to load_all then this is used.
Else if the enviroment variable ENSEMBL_REGISTRY is set then this is used
Else if the file .ensembl_init in your home directory exist it is used.
For the Web server ENSEMBL_REGISTRY should be set in SiteDefs.pm, which will
pass this on to load_all.
The registry can also be loaded via the method load_registry_from_db which
given a host will load the latest versions of the Ensembl databases from it.
The four types of registrys are for db adaptors, dba adaptors, dna adaptors
and the standard type.
=head2 db
These are registrys for backwards compatibillity and enable the subroutines
to add other adaptors to connections.
e.g. get_all_db_adaptors, get_db_adaptor, add_db_adaptor, remove_db_adaptor
are the old DBAdaptor subroutines which are now redirected to the Registry.
So if before we had
my $sfa = $self->adaptor()->db()->get_db_adaptor('blast');
We now want to change this to
my $sfa = Bio::EnsEMBL::Registry->get_db($self->adaptor->db,'blast');
OR preferably if the blast adaptor was set up in configure
my $sfa = Bio::EnsEMBL::Registry->get_adaptor("Human","core","blast");
=head2 DBA
These are the stores for the DBAdaptors
The Registry will create all the DBConnections needed now if you set up the
configuration correctly. So instead of the old commands like
my $db = Bio::EnsEMBL::DBSQL::DBAdaptor->new(....)
my $exon_adaptor = $db->get_ExonAdaptor;
we should now have just
my $exon_adaptor = Bio::EnsEMBL::Registry->get_adaptor("Human","core","Exon");
=head2 DNA
This is an internal Registry and allows the configuration of a dnadb.
An example here is to set the est database to get its dna data from the core database.
## set the est db to use the core for getting dna data.
#Bio::EnsEMBL::Utils::ConfigRegistry->
# dnadb_add("Homo Sapiens","core","Homo Sapiens","est");
=head2 adaptors
This is the registry for all the general types of adaptors like GeneAdaptor, ExonAdaptor,
Slice Adaptor etc.
These are accessed by the get_adaptor subroutine i.e.
my $exon_adaptor = Bio::EnsEMBL::Registry->get_adaptor("Human","core","Exon");
=head1 CONTACT
Post questions to the Ensembl developer list: <ensembl-dev@ebi.ac.uk>
=head1 METHODS
=cut
package Bio::EnsEMBL::Registry;
use strict;
use Bio::EnsEMBL::DBSQL::DBAdaptor;
use Bio::EnsEMBL::Utils::Exception qw( deprecate throw warning );
use Bio::EnsEMBL::Utils::Argument qw(rearrange);
use DBI;
use vars qw(%registry_register);
=head2 load_all
Ian Longden
committed
Will load the registry with the configuration file which is obtained from
the first in the following and in that order.
1) if an argument is passed to this method this is used as the conf file.
2) If the enviroment variable ENSEMBL_REGISTRY is set this is used.
3) If the file .ensembl_init exist in the home directory it is used
Arg [1] : (optional) string $arg file to load the registry from
Example : Bio::EnsEMBL::Registry->load_all();
Returntype : none
Exceptions : none
=cut
sub load_all{
Ian Longden
committed
my $class = shift;
my $web_reg = shift;
if(defined($registry_register{'seen'})){
print STDERR "Clearing previuosly loaded configuration from Registry\n";
$class->clear();
}
$registry_register{'seen'}=1;
if(defined($web_reg)){
print STDERR "Loading conf from site defs file ".$web_reg."\n";
if(-e $web_reg){
unless (my $return = do $web_reg ){
throw "Error in Configuration\n $!\n";
}
# other wise it gets done again by the web initialisation stuff
delete $INC{$web_reg};
}
}
elsif(defined($ENV{ENSEMBL_REGISTRY}) and -e $ENV{ENSEMBL_REGISTRY}){
my $file = $ENV{ENSEMBL_REGISTRY};
print STDERR "Loading conf from ".$file."\n";
unless (my $return = do $ENV{ENSEMBL_REGISTRY}){
throw "Configuration error in $file: $@" if $@;
throw "Configuration error in $file: $!" unless defined $return;
throw "Configuration error in $file" unless $return;
Ian Longden
committed
}
elsif(-e $ENV{HOME}."/.ensembl_init") {
my $file = $ENV{HOME}."/.ensembl_init";
my $return;
unless( my $return = do( $file )) {
throw "Configuration error in $file: $@" if $@;
throw "Configuration error in $file: $!" unless defined $return;
throw "Configuration error in $file" unless $return;
Ian Longden
committed
}
else{
print STDERR "NO default configuration to load\n";
}
}
=head2 clear
Ian Longden
committed
Ian Longden
committed
Will clear the registry and disconnect from all databases.
Example : Bio::EnsEMBL::Registry->clear();
Returntype : none
Exceptions : none
=cut
sub clear{
my ($self);
foreach my $dba (@{$registry_register{'_DBA'}}){
if($dba->dbc->connected){
$dba->dbc->db_handle->disconnect();
}
}
%registry_register = undef;
}
#
# add ons.
#
=head2 add_db
Arg [1] : db (DBAdaptor) to add adaptor to.
Arg [2] : name of the name to add the adaptor to in the registry.
Arg [3] : The adaptor to be added to the registry.
Example : Bio::EnsEMBL::Registry->add_db($db, "lite", $dba);
Returntype : none
Exceptions : none
=cut
sub add_db{
my ($class, $db, $name, $adap) = @_;
if(lc($db->species()) ne lc($adap->species)){
$registry_register{lc($db->species())}{lc($db->group())}{'_special'}{lc($name)} = $adap;
Arg [1] : db (DBAdaptor) to remove adaptor from.
Arg [2] : name to remove the adaptor from in the registry.
Example : my $db = Bio::EnsEMBL::Registry->remove_db($db, "lite");
Returntype : adaptor
Exceptions : none
=cut
sub remove_db{
my ($class, $db, $name) = @_;
my $ret = $registry_register{lc($db->species())}{lc($db->group())}{'_special'}{lc($name)};
$registry_register{lc($db->species())}{lc($db->group())}{'_special'}{lc($name)} = undef;
Arg [1] : db (DBAdaptor) to get adaptor from.
Arg [2] : name to get the adaptor for in the registry.
Example : my $db = Bio::EnsEMBL::Registry->get_db("Human", "core", "lite");
Returntype : adaptor
Exceptions : none
=cut
sub get_db{
my ($class, $db, $name) = @_;
my $ret = Bio::EnsEMBL::Registry->get_DBAdaptor(lc($db->species),lc($name));
if(defined($ret)){
return $ret;
}
return $registry_register{lc($db->species())}{lc($db->group())}{'_special'}{lc($name)};
Arg [1] : db (DBAdaptor) to get all the adaptors from.
Example : my $db = Bio::EnsEMBL::Registry->get_all_db_adaptors($db);
Returntype : adaptor
Exceptions : none
=cut
sub get_all_db_adaptors{
my ($class,$db) = @_;
my %ret=();
# we now also want to add all the DBAdaptors for the same species.
# as add_db_adaptor does not add if it is from the same species.
foreach my $dba (@{$registry_register{'_DBA'}}){
if(lc($dba->species()) eq lc($db->species())){
foreach my $key (keys %{$registry_register{$class->get_alias($db->species())}{lc($db->group())}{'_special'}}){
$ret{$key} = $registry_register{$class->get_alias($db->species())}{lc($db->group())}{'_special'}{$key};
}
return \%ret;
}
#
# DBAdaptors
#
=head2 add_DBAdaptor
Arg [1] : name of the species to add the adaptor to in the registry.
Arg [2] : name of the group to add the adaptor to in the registry.
Arg [3] : The DBAaptor to be added to the registry.
Example : Bio::EnsEMBL::Registry->add_DBAdaptor("Human", "core", $dba);
Returntype : none
Exceptions : none
=cut
sub add_DBAdaptor{
my ($class, $species, $group, $adap) = @_;
if(!($class->alias_exists($species))){
$class->add_alias($species,$species);
}
$registry_register{$species}{lc($group)}{'_DB'} = $adap;
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
if(!defined($registry_register{'_DBA'})){
my @list =();
push(@list,$adap);
$registry_register{'_DBA'}= \@list;
}
else{
push(@{$registry_register{'_DBA'}},$adap);
}
}
=head2 get_DBAdaptor
Arg [1] : name of the species to get the adaptor for in the registry.
Arg [2] : name of the group to get the adaptor for in the registry.
Example : $dba = Bio::EnsEMBL::Registry->get_DBAdaptor("Human", "core");
Returntype : DBAdaptor
Exceptions : none
=cut
sub get_DBAdaptor{
my ($class, $species, $group) = @_;
$species = $class->get_alias($species);
Ian Longden
committed
return $registry_register{$species}{lc($group)}{'_DB'};
Ian Longden
committed
Arg [SPECIES]: (optional) string
species name to get adaptors for
Arg [GROUP] : (optional) string
group name to get adaptors for
Example : @dba = @{Bio::EnsEMBL::Registry->get_all_DBAdaptors()};
: @human_dbas = @{Bio::EnsEMBL::Registry->get_all_DBAdaptors(-species => 'human')};
Returntype : list of DBAdaptors
Exceptions : none
Ian Longden
committed
my ($class,@args)=@_;
my @ret;
Ian Longden
committed
my ($species, $group) =
rearrange([qw(SPECIES GROUP)], @args);
if(defined($species)){
$species = $class->get_alias($species);
}
foreach my $dba (@{$registry_register{'_DBA'}}){
if(!defined($species) || $species eq $dba->species){
if(!defined($group) || lc($group) eq lc($dba->group)){
push @ret, $dba;
}
}
}
return \@ret;
=head2 get_all_DBAdaptors_by_connection
Arg [1] :dbconnection to use to find DBAdaptors
Returntype : reference to list of DBAdaptors
Exceptions : none.
Example : @dba = @{Bio::EnsEMBL::Registry->get_all_DBAdaptors_by_connection($dbc);
=cut
sub get_all_DBAdaptors_by_connection{
my ($self, $dbc_orig) = @_;
my @return;
foreach my $dba ( @{$registry_register{'_DBA'}}){
my $dbc = $dba->dbc;
if($dbc->equals($dbc_orig)){
push @return, $dba;
}
}
return \@return;
}
#
# DNA Adaptors
#
=head2 add_DNAAdaptor
Arg [1] : name of the species to add the adaptor to in the registry.
Arg [2] : name of the group to add the adaptor to in the registry.
Arg [3] : The adaptor to be added to the registry as a DNA adaptor.
Example : Bio::EnsEMBL::Registry->add_DNAAdaptor("Human", "core", $dnaAdap);
Returntype : none
Exceptions : none
=cut
sub add_DNAAdaptor{
my ($class, $species, $group, $dnadb_species, $dnadb_group) = @_;
$dnadb_species = $class->get_alias($dnadb_species);
Ian Longden
committed
if($dnadb_group->isa('Bio::EnsEMBL::DBSQL::DBAdaptor')){
Ian Longden
committed
}
else{
$registry_register{$species}{lc($group)}{'_DNA'} = $dnadb_group;
$registry_register{$species}{lc($group)}{'_DNA2'} = $dnadb_species;
Ian Longden
committed
}
}
=head2 get_DNAAdaptor
Arg [1] : name of the species to get the adaptor for in the registry.
Arg [2] : name of the group to get the adaptor for in the registry.
Example : $dnaAdap = Bio::EnsEMBL::Registry->get_DNAAdaptor("Human", "core");
Returntype : adaptor
Exceptions : none
=cut
sub get_DNAAdaptor{
my ($class, $species, $group) = @_;
$species = $class->get_alias($species);
my $new_group = $registry_register{$species}{lc($group)}{'_DNA'};
my $new_species = $registry_register{$species}{lc($group)}{'_DNA2'};
Ian Longden
committed
if( defined $new_group ) {
return $class->get_DBAdaptor($new_species,$new_group);
Ian Longden
committed
} else {
return undef;
}
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
}
#
# General Adaptors
#
=head2 add_adaptor
Arg [1] : name of the species to add the adaptor to in the registry.
Arg [2] : name of the group to add the adaptor to in the registry.
Arg [3] : name of the type to add the adaptor to in the registry.
Arg [4] : The DBAaptor to be added to the registry.
Arg [5] : (optional) if set okay to overwrite.
Example : Bio::EnsEMBL::Registry->add_adaptor("Human", "core", "Gene", $adap);
Returntype : none
Exceptions : none
=cut
sub add_adaptor{
my ($class,$species,$group,$type,$adap, $reset)= @_;
$species = $class->get_alias($species);
#
# Becouse the adaptors are not stored initially only there class paths when
# the adaptors are obtained we need to store these instead.
# It is not necessarily an error if the registry is overwritten without
# the reset set but it is an indication that we are overwriting a database
# which should be a warning for now
#
if(defined($reset)){ # JUST REST THE HASH VLAUE NO MORE PROCESSING NEEDED
$registry_register{$species}{lc($group)}{lc($type)} = $adap;
if(defined($registry_register{$species}{lc($group)}{lc($type)})){
print STDERR ("Overwriting Adaptor in Registry for $species $group $type\n");
$registry_register{$species}{lc($group)}{lc($type)} = $adap;
$registry_register{$species}{lc($group)}{lc($type)} = $adap;
if(!defined ($registry_register{$species}{'list'})){
my @list =();
push(@list,$type);
$registry_register{$species}{'list'}= \@list;
}
else{
push(@{$registry_register{$species}{'list'}},$type);
Ian Longden
committed
if(!defined ($registry_register{lc($type)}{$species})){
$registry_register{lc($type)}{$species}= \@list;
push(@{$registry_register{lc($type)}{$species}},$adap);
}
}
=head2 get_adaptor
Arg [1] : name of the species to add the adaptor to in the registry.
Arg [2] : name of the group to add the adaptor to in the registry.
Arg [3] : name of the type to add the adaptor to in the registry.
Example : $adap = Bio::EnsEMBL::Registry->get_adaptor("Human", "core", "Gene");
Returntype : adaptor
Exceptions : none
=cut
sub get_adaptor{
my ($class,$species,$group,$type)= @_;
Ian Longden
committed
$species = $class->get_alias($species);
my %dnadb_adaptors = qw(sequence 1 assemblymapper 1 karyotypeband 1 repeatfeature 1 coordsystem 1 assemblyexceptionfeature 1 );
Ian Longden
committed
my $dnadb_group = $registry_register{$species}{lc($group)}{_DNA};
Ian Longden
committed
if( defined($dnadb_group) && defined($dnadb_adaptors{lc($type)}) ) {
$species = $registry_register{$species}{lc($group)}{'_DNA2'};
Ian Longden
committed
$group = $dnadb_group;
my $ret = $registry_register{$species}{lc($group)}{lc($type)};
my $dba = $registry_register{$species}{lc($group)}{'_DB'};
my $module = $ret;
eval "require $module";
if($@) {
warning("$module cannot be found.\nException $@\n");
return undef;
}
my $adap = "$module"->new($dba);
Bio::EnsEMBL::Registry->add_adaptor($species, $group, $type, $adap, "reset");
$ret = $adap;
}
return $ret;
}
=head2 get_all_adaptors
Arg [SPECIES] : (optional) string
species name to get adaptors for
Arg [GROUP] : (optional) string
group name to get adaptors for
Arg [TYPE] : (optional) string
type to get adaptors for
Example : @adaps = @{Bio::EnsEMBL::Registry->get_all_adaptors()};
Returntype : list of adaptors
Exceptions : none
=cut
sub get_all_adaptors{
my ($class,@args)= @_;
my ($species, $group, $type);
my @ret=();
my (%species_hash, %group_hash, %type_hash);
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
if(@args == 1){ #old species only one parameter
warn("-SPECIES argument should now be used to get species adaptors");
$species = $args[0];
}
else{
# new style -SPECIES, -GROUP, -TYPE
($species, $group, $type) =
rearrange([qw(SPECIES GROUP TYPE)], @args);
}
if(defined($species)){
$species_hash{$species} = 1;
}
else{
# get list of species
foreach my $dba (@{$registry_register{'_DBA'}}){
$species_hash{lc($dba->species())} = 1;
}
}
if(defined($group)){
$group_hash{$group} = 1;
}
else{
foreach my $dba (@{$registry_register{'_DBA'}}){
$group_hash{lc($dba->group())} = 1;
}
}
if(defined($type)){
$type_hash{$type} =1;
}
else{
foreach my $dba (@{$registry_register{'_DBA'}}){
foreach my $ty (@{$registry_register{lc($dba->species)}{'list'}}){
$type_hash{lc($ty)} = 1;
}
}
}
### NOW NEED TO INSTANTIATE BY CALLING get_adaptor
foreach my $sp (keys %species_hash){
foreach my $gr (keys %group_hash){
foreach my $ty (keys %type_hash){
my $temp = $class->get_adaptor($sp,$gr,$ty);
if(defined($temp)){
push @ret, $temp;
}
}
}
}
return (\@ret);
}
=head2 add_alias
Arg [1] : name of the species to add alias for
Arg [2] : name of the alias
Example : Bio::EnsEMBL::Registry->add_alias("Homo Sapiens","Human");
Description: add alternative name for the species.
Returntype : none
Exceptions : none
=cut
sub add_alias{
my ($class, $species,$key) = @_;
$registry_register{'_ALIAS'}{lc($key)} = lc($species);
}
=head2 get_alias
Arg [1] : name of the possible alias to get species for
Example : Bio::EnsEMBL::Registry->get_alias("Human");
Description: get proper species name.
Returntype : species name
if(!defined($registry_register{'_ALIAS'}{lc($key)})){
return $registry_register{'_ALIAS'}{lc($key)};
=head2 alias_exists
Arg [1] : name of the possible alias to get species for
Arg [2] : if set will not throw if not found.
Description: does the species name exist.
Returntype : 1 if exists else 0
Exceptions : none
=cut
sub alias_exists{
my ($class, $key) = @_;
if(defined($registry_register{'_ALIAS'}{lc($key)})){
return 1;
}
return 0;
}
Ian Longden
committed
=head2 set_disconnect_when_inactive
Example : Bio::EnsEMBL::Registry->set_disconnect_when_inactive();
Description: Set the flag to make sure that the database connection is dropped if
not being used on each database.
Returntype : none
Exceptions : none
=cut
sub set_disconnect_when_inactive{
foreach my $dba ( @{get_all_DBAdaptors()}){
my $dbc = $dba->dbc;
#disconnect if connected
$dbc->disconnect_if_idle() if $dbc->connected();
$dbc->disconnect_when_inactive(1);
}
}
Ian Longden
committed
=head2 disconnect_all
Example : Bio::EnsEMBL::Registry->disconnect_all();
Description: disconnect from all the databases.
Returntype : none
Exceptions : none
=cut
sub disconnect_all {
my $dbc = $dba->dbc;
#disconnect if connected
$dbc->disconnect_if_idle() if $dbc->connected();
}
}
=head2 change_access
Will change the username and password for a set of databases.
if host,user or database names are missing then these are not checked.
So for example if you do not specify a database then ALL databases on
the specified host and port will be changed.
Arg [1] : name of the host to change access on
Arg [2] : port number to change access on
Arg [3] : name of the user to change access on
Arg [4] : name of the database to change access on
Arg [5] : name of the new user
Arg [6] : new password
Example : Bio::EnsEMBL::Registry->get_alias("Human");
Description: change username and password on one or more databases
Returntype : none
Exceptions : none
=cut
sub change_access{
my $self = shift;
my ($host,$port,$user,$dbname,$new_user,$new_pass) = @_;
foreach my $dba ( @{$registry_register{'_DBA'}}){
my $dbc = $dba->dbc;
if((!defined($host) or $host eq $dbc->host) and
(!defined($port) or $port eq $dbc->port) and
(!defined($user) or $user eq $dbc->username) and
(!defined($dbname) or $dbname eq $dbc->dbname)){
if($dbc->connected()){
$dbc->db_handle->disconnect();
$dbc->connected(undef);
}
# over write the username and password
$dbc->username($new_user);
$dbc->password($new_pass);
}
=head2 load_registry_from_db
Arg [HOST] : The domain name of the database host to connect to.
Arg [USER] : string
The name of the database user to connect with
Arg [PASS] : (optional) string
The password to be used to connect to the database
Arg [PORT] : int
The port to use when connecting to the database
Arg [VERBOSE]: (optional) Wether to print database messages
Example : load_registry_from_db( -host => 'ensembldb.ensembl.org',
-user => 'anonymous',
-verbose => "1" );
Description: Will load the latest versions of the ensembl databases it
can find on a database instance into the registry.
Exceptions : None.
=cut
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
sub load_registry_from_db{
my($self, @args) = @_;
my ($host, $port, $user, $pass, $verbose) =
rearrange([qw(HOST PORT USER PASS VERBOSE)], @args);
my $go_version = 0;
my $compara_version =0;
$user ||= "ensro";
my $db = DBI->connect( "DBI:mysql:host=$host;port=$port" , $user, $pass );
my $res = $db->selectall_arrayref( "show databases" );
my @dbnames = map {$_->[0] } @$res;
my %temp;
for my $db (@dbnames){
if($db =~ /^([a-z]+_[a-z]+_[a-z]+)_(\d+)_(\d+[a-z]*)/){
if(defined($temp{$1})){
my ($r1,$r2) = split($temp{$1},"_");
if($r1 < $2){
$temp{$1} = $2."_".$3;
}
}
else{
$temp{$1} = $2."_".$3;
}
}
elsif($db =~ /^ensembl_compara_(\d+)/){
if($compara_version < $1){
$compara_version = $1;
}
}
elsif($db =~ /^ensembl_go_(\d+)/){
if($go_version < $1){
$go_version = $1;
}
}
}
@dbnames =();
foreach my $key ( keys %temp){
push @dbnames, $key."_".$temp{$key};
}
# register core databases
my @core_dbs = grep { /^[a-z]+_[a-z]+_core_\d+_/ } @dbnames;
for my $coredb ( @core_dbs ) {
my ($species, $num ) = ( $coredb =~ /(^[a-z]+_[a-z]+)_core_(\d+)/ );
my $dba = Bio::EnsEMBL::DBSQL::DBAdaptor->new
( -group => "core",
-species => $species,
-host => $host,
-user => $user,
-pass => $pass,
-port => $port,
-dbname => $coredb
);
(my $sp = $species ) =~ s/_/ /g;
$self->add_alias( $species, $sp );
print $coredb." loaded\n" if ($verbose);
}
my @estgene_dbs = grep { /^[a-z]+_[a-z]+_estgene_\d+_/ } @dbnames;
for my $estgene_db ( @estgene_dbs ) {
my ($species, $num) = ( $estgene_db =~ /(^[a-z]+_[a-z]+)_estgene_(\d+)/ );
my $dba = Bio::EnsEMBL::DBSQL::DBAdaptor->new
( -group => "estgene",
-species => $species,
-host => $host,
-user => $user,
-pass => $pass,
-port => $port,
-dbname => $estgene_db
);
print $estgene_db." loaded\n" if ($verbose);
}
eval "require Bio::EnsEMBL::Variation::DBSQL::DBAdaptor";
if($@) {
#ignore variations as code required not there for this
print "Bio::EnsEMBL::Variation::DBSQL::DBAdaptor module not found so variation databases will be ignored if found\n" if ($verbose);
}
else{
my @variation_dbs = grep { /^[a-z]+_[a-z]+_variation_\d+_/ } @dbnames;
for my $variation_db ( @variation_dbs ) {
my ($species, $num ) = ( $variation_db =~ /(^[a-z]+_[a-z]+)_variation_(\d+)/ );
my $dba = Bio::EnsEMBL::Variation::DBSQL::DBAdaptor->new
( -group => "variation",
-species => $species,
-host => $host,
-user => $user,
-pass => $pass,
-port => $port,
-dbname => $variation_db
);
print $variation_db." loaded\n" if ($verbose);
}
}
#Compara
if($compara_version){
eval "require Bio::EnsEMBL::Compara::DBSQL::DBAdaptor";
if($@) {
#ignore compara as code required not there for this
print "Bio::EnsEMBL::Compara::DBSQL::DBAdaptor not found so compara database ensembl_compara_$compara_version will be ignored\n" if ($verbose);
}
else{
my $compara_db = "ensembl_compara_".$compara_version;
my $dba = Bio::EnsEMBL::Compara::DBSQL::DBAdaptor->new
( -group => "compara",
-species => "multi",
-host => $host,
-user => $user,
-pass => $pass,
-port => $port,
-dbname => $compara_db
);
print $compara_db." loaded\n" if ($verbose);
}
}
else{
print "No Compara database found" if ($verbose);
}
#GO
if($go_version){
eval "use Bio::EnsEMBL::ExternalData::GO::GOAdaptor";
if($@) {
#ignore go as code required not there for this
print "Bio::EnsEMBL::ExternalData::GO::GOAdaptor::DBAdaptor not found so go database ensemb_go_$go_version will be ignored\n" if ($verbose);
}
else{
my $go_db = "ensembl_go_".$go_version;
my $dba = Bio::EnsEMBL::ExternalData::GO::GOAdaptor->new
( -group => "go",
-species => "multi",
-host => $host,
-user => $user,
-pass => $pass,
-port => $port,
-dbname => $go_db
);
print $go_db." loaded\n" if ($verbose);
}
}
else{
print "No go database found" if ($verbose);
}
}
Ian Longden
committed
=head2 DEPRECATED load_registry_with_web_adaptors
Ian Longden
committed
DEPRECATED: Use load_registry_from_db instead.
sub load_registry_with_web_adaptors{
Ian Longden
committed
deprecate('Use the load_registry_from_db instead');
eval{ require SiteDefs };
if ($@){ die "Can't use SiteDefs.pm - $@\n"; }
SiteDefs->import(qw(:ALL));
eval{ require SpeciesDefs };
if ($@){ die "Can't use SpeciesDefs.pm - $@\n"; }
my $conf = new SpeciesDefs();
my %species_alias = %{$SiteDefs::ENSEMBL_SPECIES_ALIASES};
foreach my $spec (keys %species_alias){
Bio::EnsEMBL::Registry->add_alias($species_alias{$spec},$spec);
}
Ian Longden
committed
Sets a flag to say that that this species/group are a default track and do not