|
NAMEBio::DB::SoapEUtilities::Result - Accessor object for SoapEUtilities resultsSYNOPSIS$fac = Bio::DB::SoapEUtilities->new(); $result = $fac->esearch( -db => 'gene', -term => 'hedgehog')->run; $count = $result->count; # case important; $result->Count could be arrayref @ids = $result->ids; DESCRIPTIONThis module attempts to make Entrez Utilities SOAP responses as user-friendly and intuitive as possible. These responses can be complex structures with much useful data; but users will generally desire the values of some key fields. The Result object provides access to all response values via systematically named accessor methods, and commonly used values as convenience methods. The 'raw' SOAP message (a SOAP::SOM object as returned by SOAP::Lite) is also provided.
Other methods
accessors() An array of available data accessor names. This contains only the data "tips". The internal node accessors are autoloaded. ok() True if no SOAP fault. errstr() Returns the SOAP fault error string. som() The original "SOAP::SOM" message. util() The EUtility associated with the result. FEEDBACKMailing ListsUser feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to the Bioperl mailing list. Your participation is much appreciated.bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists SupportPlease direct usage questions or support issues to the mailing list: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. Reporting BugsReport bugs to the Bioperl bug tracking system to help us keep track of the bugs and their resolution. Bug reports can be submitted via the web:http://redmine.open-bio.org/projects/bioperl/ AUTHOR - Mark A. JensenEmail maj -at- fortinbras -dot- usAPPENDIXThe rest of the documentation details each of the object methods. Internal methods are usually preceded with a _parse_methods()Title : parse_methods Usage : Function: parse out the accessor methods Returns : self (Result object) Args : $alias_hash (hashref), $prune_at_nodes (scalar or arrayref) util()Title : util Usage : Function: Name of the utility producing this result object. Returns : scalar string Args : som()Title : som Usage : Function: get the original SOAP::SOM object Returns : a SOAP::SOM object Args : none ok()Title : ok Usage : Function: Returns : true if no SOAP fault Args : errstr()Title : errstr Usage : Function: Returns : fault string of SOAP object Args : none accessors()Title : accessors Usage : Function: get the list of created accessors for this result Returns : array of scalar strings Args : none Note : does not include valid AUTOLOADed accessors; see DESCRIPTION webenv()Title : webenv Usage : Function: contains WebEnv key referencing this result's session Returns : scalar Args : none query_key()()Title : query_key() Usage : Function: contains the web query key assigned to this result Returns : scalar Args : fetch_type()Title : fetch_type Usage : Function: Get the efetch database name according to WSDL Returns : scalar string (db name) or undef if N/A Args : none POD ERRORSHey! The above document had some coding errors, which are explained below:
Visit the GSP FreeBSD Man Page Interface. |