Bio::DB::EUtilities egquery
SummaryIncluded librariesPackage variablesSynopsisDescriptionGeneral documentationMethods
Summary
Bio::DB::EUtilities::egquery - counts for a global query of Entrez databases
Package variables
No package variables defined.
Inherit
Bio::DB::EUtilities
Synopsis
    my $egquery = Bio::DB::EUtilities->new(
-eutil => 'egquery',
-term => 'dihydroorotase'
);
print $egquery->get_response->content;
Description
EGQuery provides Entrez database counts
in XML for a single search using NCBI's Global Query. No further parsing of
the XML data is processed at this time. The following are a general list of parameters that can be used to take
advantage of EGQuery. Up-to-date help for EGQuery is available at this URL
(the information below is a summary of the options found there):
  http://eutils.ncbi.nlm.nih.gov/entrez/query/static/egquery_help.html
   term
   Search term or phrase with or without Boolean operators. This can use search
field descriptions and tags (Note: these may be database specific and are
better used with ESearch.
Methods
_initialize
No description
Code
parse_responseDescriptionCode
Methods description
parse_responsecode    nextTop
 Title   : parse_response
Usage : $db->_parse_response($content)
Function: parse out response for cookie
Returns : empty
Args : none
Throws : 'unparseable output exception'
Methods code
_initializedescriptionprevnextTop
sub _initialize {
    my ($self, @args ) = @_;
    $self->SUPER::_initialize(@args);
	my ($term) =  $self->_rearrange([qw(TERM)],@args);	
    # set by default
$self->_eutil($EUTIL); $term && $self->term($term);
}
parse_responsedescriptionprevnextTop
sub parse_response {}
General documentation
FEEDBACKTop
Mailing ListsTop
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@lists.open-bio.org               - General discussion
http://www.bioperl.org/wiki/Mailing_lists - About the mailing lists
Reporting BugsTop
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.
  http://bugzilla.open-bio.org/
AUTHOR Top
Email cjfields at uiuc dot edu
APPENDIXTop
The rest of the documentation details each of the
object methods. Internal methods are usually
preceded with a _