/usr/share/perl5/Bio/DB/Registry.pm is in libbio-perl-perl 1.7.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 | #
# POD documentation - main docs before the code
=head1 NAME
Bio::DB::Registry - Access to the Open Bio Database Access registry scheme
=head1 SYNOPSIS
use Bio::DB::Registry();
$registry = Bio::DB::Registry->new();
@available_services = $registry->services;
$db = $registry->get_database('embl');
# $db is a Bio::DB::SeqI implementing class
$seq = $db->get_Seq_by_acc("J02231");
=head1 DESCRIPTION
This module provides access to the Open Bio Database Access (OBDA)
scheme, which provides a single cross-language and cross-platform
specification of how to get to databases. These databases may be
accessible through the Web, they may be BioSQL databases, or
they may be local, indexed flatfile databases.
If the user or system administrator has not installed the default init
file, seqdatabase.ini, in /etc/bioinformatics or ${HOME}/.bioinformatics
then creating the first Registry object copies the default settings from
the www.open-bio.org. The Registry object will attempt to store these
settings in a new file, ${HOME}/.bioinformatics/seqdatabase.ini.
Users can specify one or more custom locations for the init file by
setting $OBDA_SEARCH_PATH to those directories, where multiple
directories should be separated by ';'.
Please see the OBDA Access HOWTO for more information
(L<http://bioperl.org/howtos/OBDA_HOWTO.html>).
=head2 Support
Please direct usage questions or support issues to the mailing list:
I<bioperl-l@bioperl.org>
rather than to the module maintainer directly. Many experienced and
reponsive experts will be able look at the problem and quickly
address it. Please include a thorough description of the problem
with code and data examples if at all possible.
=head2 Reporting Bugs
Report bugs to the Bioperl bug tracking system to help us keep track
the bugs and their resolution. Bug reports can be submitted via the
web:
https://github.com/bioperl/bioperl-live/issues
=head1 APPENDIX
The rest of the documentation details each of the object
methods. Internal methods are usually preceded with a _
=cut
# Let the code begin...
package Bio::DB::Registry;
use vars qw($OBDA_SPEC_VERSION $OBDA_SEARCH_PATH
$HOME $PRIVATE_DIR $PUBLIC_DIR $REGISTRY
$FALLBACK_REGISTRY);
use strict;
use Bio::DB::Failover;
use Bio::Root::HTTPget;
use base qw(Bio::Root::Root);
BEGIN {
$OBDA_SPEC_VERSION = 1.0;
$HOME = $ENV{HOME} if (defined $ENV{HOME});
if (defined $ENV{OBDA_SEARCH_PATH}) {
$OBDA_SEARCH_PATH = $ENV{OBDA_SEARCH_PATH} || '';
}
}
my %implement = ('flat' => 'Bio::DB::Flat',
'biosql' => 'Bio::DB::BioSQL::OBDA',
'biofetch' => 'Bio::DB::BioFetch'
# 'biocorba' => 'Bio::CorbaClient::SeqDB',
);
$FALLBACK_REGISTRY = 'http://www.open-bio.org/registry/seqdatabase.ini';
$PRIVATE_DIR = '.bioinformatics';
$PUBLIC_DIR = '/etc/bioinformatics';
$REGISTRY = 'seqdatabase.ini';
sub new {
my ($class,@args) = shift;
my $self = $class->SUPER::new(@args);
# open files in order
$self->{'_dbs'} = {};
$self->_load_registry();
return $self;
}
=head2 _load_registry
Title : _load_registry
Usage :
Function: Looks for seqdatabase.ini files in the expected locations and
in the directories specified by $OBDA_SEARCH_PATH. If no files
are found download a default file from www.open-bio.org
Returns : nothing
Args : none
=cut
sub _load_registry {
my $self = shift;
eval { $HOME = (getpwuid($>))[7]; } unless $HOME;
if ($@) {
# Windows can have Win32::LoginName to get the Username, so check if it works before giving up
( defined &Win32::LoginName ) ? ( $HOME = Win32::LoginName() )
: $self->warn("This Perl doesn't implement function getpwuid(), no \$HOME");
}
my @ini_files = $self->_get_ini_files();
@ini_files = $self->_make_private_registry() unless (@ini_files);
my ($db,$hash) = ();
for my $file (@ini_files) {
open my $FH, '<', $file or $self->throw("Could not read file '$file': $!");
while( <$FH> ) {
if (/^VERSION=([\d\.]+)/) {
if ($1 > $OBDA_SPEC_VERSION or !$1) {
$self->throw("Do not know about this version [$1] > $OBDA_SPEC_VERSION");
last;
}
next;
}
next if( /^#/ );
next if( /^\s/ );
if ( /^\[(\S+)\]/ ) {
$db = $1;
next;
}
my ($tag,$value) = split('=',$_);
$value =~ s/\s//g;
$tag =~ s/\s//g;
$hash->{$db}->{"\L$tag"} = $value;
}
}
for my $db ( keys %{$hash} ) {
if ( !exists $self->{'_dbs'}->{$db} ) {
my $failover = Bio::DB::Failover->new();
$self->{'_dbs'}->{$db} = $failover;
}
my $class;
if (defined $implement{$hash->{$db}->{'protocol'}}) {
$class = $implement{$hash->{$db}->{'protocol'}};
} else {
$self->warn("Registry does not support protocol " .
$hash->{$db}->{'protocol'});
next;
}
eval "require $class";
if ($@) {
$self->warn("Couldn't load $class");
next;
} else {
eval {
my $randi = $class->new_from_registry( %{$hash->{$db}} );
$self->{'_dbs'}->{$db}->add_database($randi);
};
if ($@) {
$self->warn("Couldn't call new_from_registry() on [$class]\n$@");
}
}
}
}
=head2 get_database
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
=cut
sub get_database {
my ($self,$dbname) = @_;
$dbname = lc $dbname;
if( !defined $dbname ) {
$self->warn("must get_database with a database name");
return;
}
if( !exists $self->{'_dbs'}->{$dbname} ) {
$self->warn("No database with name $dbname in Registry");
return;
}
return $self->{'_dbs'}->{$dbname};
}
=head2 services
Title : services
Usage : my @available = $registry->services();
Function: returns list of possible services
Returns : list of strings
Args : none
=cut
sub services {
my ($self) = @_;
return () unless ( defined $self->{'_dbs'} &&
ref( $self->{'_dbs'} ) =~ /HASH/i);
return keys %{$self->{'_dbs'}};
}
=head2 _get_ini_files
Title : _get_ini_files
Usage : my @files = $self->_get_ini_files
Function: To find all the seqdatabase.ini files
Returns : list of seqdatabase.ini paths
Args : None
=cut
sub _get_ini_files {
my $self = shift;
my @ini_files = ();
if ( $OBDA_SEARCH_PATH ) {
foreach my $dir ( split /;/, $OBDA_SEARCH_PATH ) {
my $file = $dir . "/" . $REGISTRY;
next unless -e $file;
push @ini_files,$file;
}
}
push @ini_files,"$HOME/$PRIVATE_DIR/$REGISTRY"
if ( $HOME && -e "$HOME/$PRIVATE_DIR/$REGISTRY" );
push @ini_files, "$PUBLIC_DIR/$REGISTRY"
if ( -e "$PUBLIC_DIR/$REGISTRY" );
@ini_files;
}
=head2 _make_private_registry
Title : _make_private_registry
Usage :
Function: Make private registry in file in $HOME
Returns : Path to private registry file
Args : None
=cut
sub _make_private_registry {
my $self = shift;
my @ini_file;
my $nor_in = $OBDA_SEARCH_PATH ?
"nor in directory specified by\n$OBDA_SEARCH_PATH" :
"and environment variable OBDA_SEARCH_PATH wasn't set";
$self->warn("No $REGISTRY file found in $HOME/$PRIVATE_DIR/\n" .
"nor in $PUBLIC_DIR $nor_in.\n" .
"Using web to get registry from\n$FALLBACK_REGISTRY");
# Last gasp. Try to use HTTPget module to retrieve the registry from
# the web...
my $f = Bio::Root::HTTPget::getFH($FALLBACK_REGISTRY);
# store the default registry file
eval {
mkdir "$HOME/$PRIVATE_DIR" unless -e "$HOME/$PRIVATE_DIR";
};
$self->throw("Could not make directory $HOME/$PRIVATE_DIR, " .
"no $REGISTRY file available") if $@;
open my $F, '>', "$HOME/$PRIVATE_DIR/$REGISTRY"
or $self->throw("Could not write file '$HOME/$PRIVATE_DIR/$REGISTRY': $!");
print $F while (<$F>);
close $F;
$self->warn("Stored $REGISTRY file in $HOME/$PRIVATE_DIR");
push @ini_file,"$HOME/$PRIVATE_DIR/$REGISTRY";
@ini_file;
}
1;
__END__
|