Bio-Biblio
view release on metacpan or search on metacpan
lib/Bio/Biblio.pm view on Meta::CPAN
package Bio::Biblio;
BEGIN {
$Bio::Biblio::AUTHORITY = 'cpan:BIOPERLML';
}
{
$Bio::Biblio::VERSION = '1.70';
}
use utf8;
use strict;
use warnings;
use parent qw(Bio::Root::Root Bio::DB::BiblioI);
# ABSTRACT: a bibliographic query service module
# AUTHOR: Martin Senger <martin.senger@gmail.com>
# OWNER: 2002 European Bioinformatics Institute
# LICENSE: Perl_5
sub new {
my ($caller,@args) = @_;
my $class = ref($caller) || $caller;
# if $caller is an object, or if it is an underlying
# 'real-work-doing' class (e.g. Bio::DB::Biblio::soap) then
# we want to call SUPER to create and bless an object
if ($class =~ /Bio::DB::Biblio::(\S+)/) {
my ($self) = $class->SUPER::new (@args);
# now the $self is an empty object - we will populate it from
# the $caller - if $caller is an object
if (ref ($caller)) {
%{ $self } = %{ $caller };
}
# and finally add values from '@args' into the newly created
# object (the values will overwrite the values copied above)
$self->_initialize (@args);
return $self;
# this is called only the first time when somebody calls: 'new
# Bio::Biblio (...)', and it actually loads a 'real-work-doing'
# module and call this new() method again (unless the loaded
# module has its own new() method)
} else {
my %param = @args;
@param { map { lc $_ } keys %param } = values %param; # lowercase keys
my $access =
$param {'-access'} ||
$class->_guess_access ( $param {'-location'} ) ||
'soap';
$access = "\L$access"; # normalize capitalization to lower case
# load module with the real implementation - as defined in $access
return unless (&_load_access_module ($access));
# this will call this same method new() - but rather its the
# upper (object) branche
return "Bio::DB::Biblio::$access"->new (@args);
}
}
# -----------------------------------------------------------------------------
sub _load_access_module {
my ($access) = @_;
my ($module, $load, $m);
$module = "_<Bio/DB/Biblio/$access.pm";
$load = "Bio/DB/Biblio/$access.pm";
return 1 if $main::{$module};
eval {
require $load;
};
if ( $@ ) {
Bio::Root::Root->throw (<<END);
$load: $access cannot be found or loaded
Exception $@
For more information about the Biblio system please see the Bio::Biblio docs.
END
;
return;
}
return 1;
}
# -----------------------------------------------------------------------------
# this is kept here for the future when more access protocols
# (e.g. CORBA) may be available for accessing bibliographic query
# services
sub _guess_access {
# my ($class, $location) = @_;
return 'soap';
}
1;
__END__
=pod
=encoding utf-8
=head1 NAME
Bio::Biblio - a bibliographic query service module
=head1 VERSION
version 1.70
=head1 SYNOPSIS
use Bio::Biblio;
my $biblio = Bio::Biblio->new();
print $biblio->find ('perl')->get_count . "\n";
my $collection = $biblio->find ('brazma', 'authors');
while ( $collection->has_next ) {
print $collection->get_next;
}
# The new() method can accept parameters, for example:
$biblio = Bio::Biblio->new
(-access => 'soap',
-location => 'http://www.ebi.ac.uk/openbqs/services/MedlineSRS',
-destroy_on_exit => '0');
# See below for some one-liners
=head1 DESCRIPTION
This is a class whose instances can access bibliographic
repositories. It allows one to query a bibliographic database (such as
MEDLINE) and then to retrieve resulting citations from it. The
citations are returned in an XML format which is native to the
repository but there are also supporting modules for converting them
into Perl objects.
The detailed descriptions of all query and retrieval methods are in
L<Bio::DB::BiblioI> (an interface). All those methods should be
called on instances of this (Bio::Biblio) module.
The module complies (with some simplifications) with the specification
described in the B<OpenBQS> project. Its home page is at
L<http://www.ebi.ac.uk/~senger/openbqs>.
The module also gives an access to a set of controlled vocabularies
and their values. It allows one to introspect bibliographic repositories
and to find what citation resource types (such as journal and book
lib/Bio/Biblio.pm view on Meta::CPAN
Usage : my $obj = Bio::Biblio->new(@args);
Returns : Bio::Biblio object on success, or undef on failure
Args : This module recognizes and uses:
-access => 'soap'
It indicates what lower-level module to load.
Default is 'soap'.
-location => 'http://...'
It says where to find a bibliographic query service.
The format and contents of this argument is dependent
on the '-access' argument.
For 'soap' access it is a URL of a WebService.
Default is http://www.ebi.ac.uk/openbqs/services/MedlineSRS
Other arguments can be given here but they are
recognized by the lower-level module
(e.g. see Bio::DB::Biblio::soap).
It builds, populates and returns a new I<Bio::Biblio> object. This is
how it is seen from the outside. But in fact, it builds, populates and
returns a more specific lower-level object, for example
I<Bio::DB::Biblio::soap> object - which one it is depends on the
parameter I<-access>.
The real initialization is done in the method I<_initialize> of the
lower-level object.
This method can also be used for I<cloning> an existing object and
changing or adding new attributes to it in the same time. This is,
however, not particulary useful for the casual users of this module,
because the query methods (see L<Bio::DB::BiblioI>) themselves
already return cloned objects with more refined query
collections. Anyway this is how the cloning can be done:
use Bio::Biblio;
my $biblio = Bio::Biblio->new();
# this will create a new object which will NOT send a 'destroy'
# message to the remote server when its life ends
my $clone = $biblio->new (-destroy-on-exit => '0');
=head1 INTERNAL METHODS
=head2 _load_access_module
Usage : $class->_load_access_module ($access)
Returns : 1 on success, undef on failure
Args : 'access' should contain the last part of the
name of a module who does the real implementation
It does (in run-time) a similar thing as
require Bio::DB::Biblio::$access
It prints an error on STDERR if it fails to find and load the module
(for example, because of the compilation errors in the module).
=head2 _guess_access
Usage : $class->_guess_access ($location)
Returns : string with a guessed access protocol (e.g. 'soap')
Args : 'location' defines where to find a bibliographic service
in a protocol-dependent manner (e.g. for SOAP it is
a URL of a bibliographic WebService)
It makes an expert guess what kind of access/transport protocol should
be used based on the I<location> of the service (e.g. if the
I<location> looks like an IOR then the access protocol is probably
CORBA).
=head1 OVERVIEW OF CLASSES AND PACKAGES
=over
=item L<Bio::Biblio>
This is the main class to be used by the end users. It
loads a real implementation for a particular access protocol according
to the argument I<-access>. At the time of writing this documentation
there is only one available access module implementing all query and
retrieval methods:
-access => soap
This module implements all methods defined in the interface
I<Bio::DB::BiblioI> (see L<Bio::DB::BiblioI>) by delegating
calls to a loaded low-level module (e.g. see
L<Bio::DB::Biblio::soap>).
Note that there are other modules which do not use the SOAP protocol
and do not implement all query methods - nevertheless they have retrieval
methods and can be used in the same way:
-access => biofetch
Lacking documentation:
-access => eutils
=item Bio::DB::BiblioI
This is an interface defining all methods that can be called on
I<Bio::Biblio> instances.
=item Bio::DB::Biblio::soap
This is a real implementation of all methods defined in
Bio::DB::BiblioI using SOAP protocol (calling a WebService
based on SOAP). This class should not be instantiated directly (use
I<Bio::Biblio> instead). See L<Bio::DB::BiblioI> for details.
=item Bio::Biblio::IO
This module instantiates and uses a converter of the citations read by
any of the access methods mentioned above. See L<Bio::Biblio::IO> for
details.
=item Bio::Biblio::IO::medlinexml and Bio::Biblio::IO::medline2ref
A converter of MEDLINE citations in XML into Perl objects.
=item Bio::Biblio::IO::pubmedxml and Bio::Biblio::IO::pubmed2ref
A converter of PUBMED citations in XML into Perl objects.
=back
( run in 5.101 seconds using v1.01-cache-2.11-cpan-81fc1098f69 )