Bio::DB
CUTG
Summary
Package variables
Globals (from "use vars" definitions)
$QUERY_KEYS
$URL
Included modules
Inherit
Synopsis
use Bio::CodonUsage::Table;
use Bio::DB::CUTG;
my $db = Bio::DB::CUTG->new(-sp =>'Pan troglodytes');
my $CUT = $db->get_request();
Description
This class retrieves and objectifies codon usage tables either from a
web database . The idea is that you can initially retrieve a CUT from
the web database, and write it to file in a way that can be read in
later, using the Bio::CodonUsage::IO module.
For a web query, two parameters need to be specified: species(sp) and
genetic code id (gc). The database is searched using regular
expressions, therefore the full latin name must be given to specify
the organism. If the species name is ambiguous the first CUT in the
list is retrieved. Defaults are Homo sapiens and 1(standard genetic
code). If you are retrieving CUTs from organisms using other genetic
codes this needs to be put in as a parameter. Parameters can be
entered in the constructor or in the get_web_request
()method. Allowable parameters are listed in the $QUERY_KEYS hash
reference variable.
I intend at a later date to allow retrieval of multiple codon tables
e.g., from a wildcard search.
Methods
Methods description
Title : new
Usage : my $db = Bio::DB::CUTG->new()
Returns : a reference to a new Bio::DB::CUTG
Args : hash of optional values for db query |
Title : query_keys
Usage : $db->query_keys()
Purpose : To determine valid keys for parameters for db query.
Returns : a reference to a hash describing valid query keys
Args : none |
Title : sp
Usage : my $sp = $db->sp();
Purpose: Get/set method for species name
Returns: void or species name string
Args : None or species name string |
Title : gc
Usage : my $gc = $db->gc();
Purpose: Get/set method for genetic code id
Returns: void or genetic code integer
Args : None or genetic code integer |
Title : get_web_request
Usage : my $cut = $db->get_web_request();
Purpose: To query remote CUT with a species name
Returns: a new codon usage table object
Args : species name(mandatory), genetic code id(optional) |
Methods code
BEGIN { $URL = "http://www.kazusa.or.jp" } |
sub new
{ my ($class, @args ) =@_;
_check_args(@args);
my $self = $class->SUPER::new(@args);
return $self; } |
sub query_keys
{ return $QUERY_KEYS; } |
sub sp
{ my $self = shift;
if (@_) {
my $name = shift;
if ($name =~ /[^\w\s]/) {
$self->warn (" contains non-word characters, setting to default
of Homo sapiens");
$self->{'_sp'} = "Homo sapiens";
}
else{
$self->{'_sp'} = $name;
}
}
return $self->{'_sp'}|| "Homo sapiens";} |
sub gc
{ my $self = shift;
if (@_) {
if($_[0] =~ /^\d+$/ && $_[0] >= 1 && $_[0] <=15 && $_[0] != 7
&& $_[0] != 8) {
$self->{'_gc'} = shift;
}
else {
$self->warn("invalid genetic code index - setting to standard default (1)");
$self->{'_gc'} = 1;
}
}
return $self->{'_gc'} || 1;
} |
sub get_request
{ my ($self, @args) = @_;
_check_args(@args);
shift;
while( @_ ) {
my $key = shift;
$key =~ s/^-//;
$self->$key(shift);
}
$self->url($URL);
my $nameparts = join "+", $self->sp =~ /(\w+)/g;
my $search_url = $self->url . "/codon/cgi-bin/spsearch.cgi?species="
. $nameparts . "&c=s";
my $rq = HTTP::Request->new(GET=>$search_url);
my $reply = $self->request($rq);
my $content = $reply->content;
return 0 unless $content;
if ($content =~ /not found/i) {
$self->warn ("organism not found -selecting human as default");
$self->sp("Homo sapiens");
$self->_db("gbpri");
}
else {
my @names = $content =~ /(species)/g;
my ($sp, $db) = $content =~ /species=(.*)\+\[(\w+)\]"/;
$sp =~ s/\+/ /g;
if (@names >1 ){
$self->warn ("too many species - not a unique species id - selecting $sp ");
}
$self->sp($sp);
$self->_db($db);
}
$nameparts = join "+", $self->sp =~ /(\w+)/g;
my $CT_url = $self->url . "/codon/cgi-bin/showcodon.cgi?species="
. $nameparts . "+%5B" . $self->_db . "%5D&aa=" . $self->gc . "&style=GCG";
my $rq2 = HTTP::Request->new(GET=>$CT_url);
my $content2 = $self->request($rq2)->content;
$content2 =~ s/<[^>]+>//sg;
$content2 =~ s/Format.*//sg;
my $iostr = IO::String->new($content2);
my $io = Bio::CodonUsage::IO->new (-fh=>$iostr);
return $io->next_data; } |
sub _check_args
{
my @args = @_;
while (my $key = lc(shift @args)) {
$key =~ s/\-//;
if (!exists ($QUERY_KEYS->{$key})) {
Bio::Root::Root->throw("invalid parameter - must be one of [" .
(join "] [", keys %$QUERY_KEYS) . "]");
}
shift @args;
} } |
sub _db
{ my $self = shift;
if (@_) {
$self->{'_db'} = shift;
}
return $self->{'_db'};} |
General documentation
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to one
of the Bioperl mailing lists. Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://bio.perl.org/MailList.html - About the mailing lists
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://bugzilla.bioperl.org/
The rest of the documentation details each of the object
methods. Internal methods are usually preceded with a _