2 # BioPerl module for Bio::DB::CUTG
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Richard Adams (richard.adams@ed.ac.uk)
8 # Copyright Richard Adams
10 # You may distribute this module under the same terms as perl itself
12 # POD documentation - main docs before the code
16 Bio::DB::CUTG - for access to the Codon usage Database
17 at http://www.kazusa.or.jp/codon.
21 use Bio::CodonUsage::Table;
24 my $db = Bio::DB::CUTG->new(-sp =>'Pan troglodytes');
25 my $CUT = $db->get_request();
30 This class retrieves and objectifies codon usage tables either from the
31 CUTG web database . The idea is that you can initially retrieve a CUT from
32 the web database, and write it to file in a way that can be read in
33 later, using the Bio::CodonUsage::IO module.
35 For a web query, two parameters need to be specified: species(sp) and
36 genetic code id (gc). The database is searched using regular
37 expressions, therefore the full latin name must be given to specify
38 the organism. If the species name is ambiguous the first CUT in the
39 list is retrieved. Defaults are Homo sapiens and 1(standard genetic
40 code). If you are retrieving CUTs from organisms using other genetic
41 codes this needs to be put in as a parameter. Parameters can be
42 entered in the constructor or in the get_web_request
43 ()method. Allowable parameters are listed in the $QUERY_KEYS hash
46 I intend at a later date to allow retrieval of multiple codon tables
47 e.g., from a wildcard search.
51 L<http://www.kazusa.or.jp/codon/cgi-bin/spsearch.cgi?species=Pan+troglodytes&c=s>
52 L<http://www.kazusa.or.jp/codon/cgi-bin/showcodon.cgi?species=37011&aa=1&style=GCG>
56 L<Bio::Tools::CodonTable>,
58 L<Bio::CodonUsage::Table>,
59 L<Bio::CodonUsage::IO>
65 User feedback is an integral part of the evolution of this and other
66 Bioperl modules. Send your comments and suggestions preferably to one
67 of the Bioperl mailing lists. Your participation is much appreciated.
69 bioperl-l@bioperl.org - General discussion
70 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
74 Please direct usage questions or support issues to the mailing list:
76 I<bioperl-l@bioperl.org>
78 rather than to the module maintainer directly. Many experienced and
79 reponsive experts will be able look at the problem and quickly
80 address it. Please include a thorough description of the problem
81 with code and data examples if at all possible.
85 Report bugs to the Bioperl bug tracking system to help us keep track
86 the bugs and their resolution. Bug reports can be submitted via the web:
88 https://github.com/bioperl/bioperl-live/issues
92 Richard Adams, Richard.Adams@ed.ac.uk
96 The rest of the documentation details each of the object
97 methods. Internal methods are usually preceded with a _
101 # Let the code begin...
103 package Bio
::DB
::CUTG
;
104 use Bio
::CodonUsage
::IO
;
107 use vars
qw($URL $QUERY_KEYS);
109 use base qw(Bio::WebAgent);
112 sp
=> 'full Latin species name',
113 gc
=> 'genetic code id'
117 $URL = "http://www.kazusa.or.jp";
123 Usage : my $db = Bio::DB::CUTG->new()
124 Returns : a reference to a new Bio::DB::CUTG
125 Args : hash of optional values for db query
130 my ( $class, @args ) = @_;
132 my $self = $class->SUPER::new
(@args);
139 Usage : $db->query_keys()
140 Purpose : To determine valid keys for parameters for db query.
141 Returns : a reference to a hash describing valid query keys
153 Usage : my $sp = $db->sp();
154 Purpose: Get/set method for species name
155 Returns: void or species name string
156 Args : None or species name string
164 $self->{'_sp'} = $name;
166 return $self->{'_sp'} || "Homo sapiens";
173 Usage : my $gc = $db->gc();
174 Purpose: Get/set method for genetic code id
175 Returns: void or genetic code integer
176 Args : None or genetic code integer
181 #### genetic code id for translations ####
184 if ( $_[0] =~ /^\d+$/
190 $self->{'_gc'} = shift;
194 "invalid genetic code index - setting to standard default (1)");
198 return $self->{'_gc'} || 1; #return 1 if not defined
205 Usage : my $cut = $db->get_request();
206 Purpose: To query remote CUT with a species name
207 Returns: a new codon usage table object
208 Args : species name(mandatory), genetic code id(optional)
213 my ( $self, @args ) = @_;
216 ### can put in parameters here as well
224 ###1st of all search DB to check species exists and is unique
225 my $nameparts = join "+", $self->sp =~ /(\S+)/g;
227 $self->url . "/codon/cgi-bin/spsearch.cgi?species=" . $nameparts . "&c=s";
228 my $rq = HTTP
::Request
->new( GET
=> $search_url );
229 my $reply = $self->request($rq);
230 if ( $reply->is_error ) {
232 $reply->as_string() . "\nError getting for url $search_url!\n" );
234 my $content = $reply->content;
235 return 0 unless $content;
236 $self->debug(" reply from query is \n $content");
237 ##### if no matches, assign defaults - or can throw here? ######
238 if ( $content =~ /not found/i ) {
239 $self->warn("organism not found -selecting human [9606] as default");
245 my @names = $content =~ /species=([^"]+)/g;
246 ### get 1st species data from report ####
247 my @dbs = $content =~ /\[([^\]]+)\]:\s+\d+/g;
248 ## warn if more than 1 matching species ##
249 ## if multiple species retrieved, choose first one by default ##
250 $self->throw("No names returned for $nameparts") unless @names;
252 $self->warn( "too many species - not a unique species id\n"
253 . "selecting $names[0] using database [$dbs[0]]" );
255 ### now assign species and database value
256 $self->sp( $names[0] );
257 $self->_db( $dbs[0] );
260 ######## now get codon table , all defaults established now
263 $nameparts = $self->sp;
267 . "/codon/cgi-bin/showcodon.cgi?species="
268 . $nameparts . "&aa="
271 $self->debug("URL : $CT_url\n");
272 ## retrieve data in html##
273 my $rq2 = HTTP
::Request
->new( GET
=> $CT_url );
274 $reply = $self->request($rq2);
275 if ( $reply->is_error ) {
277 $reply->as_string() . "\nError getting for url $CT_url!\n" );
279 my $content2 = $reply->content;
281 ## strip html tags, basic but works here
282 $content2 =~ s/<[^>]+>//sg;
283 $content2 =~ s/Format.*//sg;
284 $self->debug("raw DDB table is :\n $content2");
286 ### and pass to Bio::CodonUsage::IO for parsing
287 my $iostr = IO
::String
->new($content2);
288 my $io = Bio
::CodonUsage
::IO
->new( -fh
=> $iostr );
291 return $io->next_data;
296 ###checks parameters for matching $QUERYKEYS
298 while ( my $key = shift @args ) {
302 if ( !exists( $QUERY_KEYS->{$key} ) ) {
303 Bio
::Root
::Root
->throw( "invalid parameter - must be one of ["
304 . ( join "] [", keys %$QUERY_KEYS )
311 #### internal URL parameter not specifiable ######
315 $self->{'_db'} = shift;
317 return $self->{'_db'};