| Summary | Included libraries | Package variables | Synopsis | Description | General documentation | Methods |
These objects are generated automatically by Bio::Search::Processor::Fasta, and shouldn't be used directly.
Bio::Search::Hit::* objects are data structures that contain information about specific hits obtained during a library search. Some information will be algorithm-specific, but others will be generally defined, such as the ability to obtain alignment objects corresponding to each hit.
| _initialize | No description | Code |
| AUTOLOAD | No description | Code |
| _initialize | description | prev | next | Top |
my($self, %args) = @_; my $make = $self->SUPER::_initialize(%args); while (my ($key, $val) = each %args) { $key = '_' . uc($key); $self->$key($val); } return $make; # success - we hope!}
| AUTOLOAD | description | prev | next | Top |
my ($self, $val) = @_; $AUTOLOAD =~ s/.*:://; if ( $AUTOLOAD_OK{$AUTOLOAD} ) { $self->{$AUTOLOAD} = $val if defined $val; return $self->{$AUTOLOAD}; } else { $self->throw("Unallowed accessor: $AUTOLOAD !"); }}
| FEEDBACK | Top |
| Mailing Lists | Top |
bioperl-l@bioperl.org - General discussion http://bio.perl.org/MailList.html - About the mailing lists
| Reporting Bugs | Top |
bioperl-bugs@bio.perl.org http://bugzilla.bioperl.org/
| AUTHOR - Aaron Mackey | Top |
| APPENDIX | Top |