Bio::DB
Registry
Summary
Bio::DB::Registry - Access to the Open Bio Database Access registry scheme
Package variables
Privates (from "my" definitions)
%implement = ( 'biocorba' => 'Bio::CorbaClient::SeqDB', 'index-berkeleydb' => 'Bio::DB::Flat', 'index-flat' => 'Bio::DB::Flat::OBDAIndex', 'biosql' => 'Bio::DB::SQL::BioDatabaseAdaptor', 'biofetch' => 'Bio::DB::BioFetch' )
$fallbackRegistryURL = 'http://www.open-bio.org/registry/seqdatabase.ini'
Included modules
Inherit
Synopsis
use Bio::DB::Registry();
$registry = new Bio::DB::Registry();
@available_services = $registry->services;
$db = $registry->get_database('embl');
# $db is a Bio::DB::SeqI implementing class
$seq = $db->get_Seq_by_acc("J02231");
Description
This module provides access to the Open Bio Database Access scheme,
which provides a cross language and cross platform specification of how
to get to databases.
Methods
Methods description
Title : get_database
Usage : my $db = $registry->get_database($dbname);
Function: Retrieve a Database object which implements Bio::DB::SeqI interface
Returns : Bio::DB::SeqI object
Args : string describing the name of the database |
Title : services
Usage : my @available = $registry->services();
Function: returns list of possible services
Returns : list of strings
Args : none |
Methods code
sub new
{ my ($class,@args) = shift;
my $self = $class->SUPER::new(@args);
$self->{'_dbs'} = {};
$self->_load_registry();
return $self;} |
sub _load_registry
{ my ($self) = @_;
my $home = (getpwuid($>))[7];
my $f;
if( -e "$home/.bioinformatics/seqdatabase.ini" ) {
open(F,"$home/.bioinformatics/seqdatabase.ini");
$f =\* F;
} elsif ( -e "/etc/bioinformatics/seqdatabase.ini" ) {
open(F,"$home/.bioinformatics/seqdatabase.ini");
$f =\* F;
} else {
$self->warn("No conf file found in ~/.bioinformatics/\n or in /etc/.bioinformatics/ using web to get database registry from\n $fallbackRegistryURL\n");
$f = Bio::Root::HTTPget::getFH($fallbackRegistryURL);
}
while( <$f> ) {
if( /^#/ ) {
next;
}
if( /^\s/ ) {
next;
}
if( /\[(\w+)\]/ ) {
my $db;
$db = $1;
my $hash = {};
while( <$f> ) {
chomp();
/^#/ && next;
/^$/ && last;
my ($tag,$value) = split('=',$_);
$value =~ s/\s//g;
$tag =~ s/\s//g;
$hash->{$tag} = $value;
}
if( !exists $self->{'_dbs'}->{$db} ) {
my $failover = Bio::DB::Failover->new();
$self->{'_dbs'}->{$db}=$failover;
}
my $class;
if (defined $implement{$hash->{'protocol'}}) {
$class = $implement{$hash->{'protocol'}};
}
else {
$self->warn("Registry does not support protocol ".$hash->{'protocol'});
next;
}
eval "require $class";
if ($@) {
$self->verbose && $self->warn("Couldn't load $class");
next;
}
else {
eval {
my $randi = $class->new_from_registry(%$hash);
$self->{'_dbs'}->{$db}->add_database($randi); };
if ($@) {
$self->verbose && $self->warn("Couldn't call new_from_registry on [$class]\n$@");
}
}
next; }
$self->warn("Uninterpretable line in registry, $_");
}} |
sub get_database
{ my ($self,$dbname) = @_;
if( !defined $dbname ) {
$self->warn("must get_database with a database name");
return undef;
}
if( !exists $self->{'_dbs'}->{$dbname} ) {
$self->warn("No database in with $dbname in registry");
return undef;
}
return $self->{'_dbs'}->{$dbname};} |
sub services
{ my ($self) = @_;
return () unless ( defined $self->{'_dbs'} &&
ref( $self->{'_dbs'} ) =~ /HASH/i);
return keys %{$self->{'_dbs'}};} |
General documentation
Ewan Birney originally wrote this class.
Report bugs to the Bioperl bug tracking system to help us keep track
the bugs and their resolution. Bug reports can be submitted via email
or the web:
bioperl-bugs@bio.perl.org
http://bio.perl.org/bioperl-bugs/
The rest of the documentation details each of the object
methods. Internal methods are usually preceded with a _