3 # BioPerl module for wrapping Blast statistics
5 # Please direct questions and support issues to <bioperl-l@bioperl.org>
7 # Cared for by Chad Matsalla (bioinformatics1 at dieselwurks dot com)
9 # Copyright Chad Matsalla
11 # You may distribute this module under the same terms as perl itself
13 # POD documentation - main docs before the code
17 Bio::Search::BlastStatistics - An object for Blast statistics
21 # this is a wrapper to hold the statistics from a Blast report
22 my $bs = $result->get_statistics();
23 # you can get a statistic generically, like this:
24 my $kappa = $bs->get_statistic("kappa");
25 # or specifically, like this:
26 my $kappa2 = $bs->get_kappa();
31 This is a basic container to hold the statistics returned from a Blast.
37 User feedback is an integral part of the evolution of this and other
38 Bioperl modules. Send your comments and suggestions preferably to
39 the Bioperl mailing list. Your participation is much appreciated.
41 bioperl-l@bioperl.org - General discussion
42 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
46 Please direct usage questions or support issues to the mailing list:
48 I<bioperl-l@bioperl.org>
50 rather than to the module maintainer directly. Many experienced and
51 reponsive experts will be able look at the problem and quickly
52 address it. Please include a thorough description of the problem
53 with code and data examples if at all possible.
57 Report bugs to the Bioperl bug tracking system to help us keep track
58 of the bugs and their resolution. Bug reports can be submitted via the
61 https://github.com/bioperl/bioperl-live/issues
63 =head1 AUTHOR - Chad Matsalla
65 Email bioinformatics1 at dieselwurks dot com
69 The rest of the documentation details each of the object methods.
70 Internal methods are usually preceded with a _
75 # Let the code begin...
78 package Bio
::Search
::BlastStatistics
;
81 # Object preamble - inherits from Bio::Root::Root
84 use base
qw(Bio::Root::RootI Bio::Search::StatisticsI);
91 my ($class, @args) = @_;
92 # really, don't bother with any initial initialization
93 my $self = $class->SUPER::new
(@args);
100 Title : get_statistic
101 Usage : $statistic_object->get_statistic($statistic_name);
102 Function: Get the value of a statistic named $statistic_name
103 Returns : A scalar that should be a string
104 Args : A scalar that should be a string
109 my ($self,$arg) = @_;
110 return $self->{$arg};
116 Title : set_statistic
117 Usage : $statistic_object->set_statistic($statistic_name => $statistic_value);
118 Function: Set the value of a statistic named $statistic_name to $statistic_value
120 Args : A hash containing name=>value pairs
125 my ($self,%args) = @_;
126 foreach (keys %args) {
127 $self->{$_} = $args{$_};