Bio::Search::Hit
HitFactory
Toolbar
Summary
Bio::Search::Hit::HitFactory - A factory to create Bio::Search::Hit::HitI objects
Package variables
No package variables defined.
Included modules
Inherit
Synopsis
use Bio::Search::Hit::HitFactory;
my $factory = new Bio::Search::Hit::HitFactory();
my $resultobj = $factory->create(@args);
Description
This is a general way of hiding the object creation process so that we
can dynamically change the objects that are created by the SearchIO
parser depending on what format report we are parsing.
This object is for creating new Hits.
Methods
Methods description
Title : new Usage : my $obj = new Bio::Search::Hit::HitFactory(); Function: Builds a new Bio::Search::Hit::HitFactory object Returns : Bio::Search::Hit::HitFactory Args : |
Title : type Usage : $factory->type('Bio::Search::Hit::GenericHit'); Function: Get/Set the Hit creation type Returns : string Args : [optional] string to set |
Methods code
BEGIN { $DEFAULT_TYPE = 'Bio::Search::Hit::GenericHit'; } |
sub create
{ my ($self,@args) = @_;
my $type = $self->type;
eval { $self->_load_module($type) };
if( $@ ) { $self->throw("Unable to load module $type"); }
return $type->new(@args); } |
sub new
{ my($class,@args) = @_;
my $self = $class->SUPER::new(@args);
my ($type) = $self->_rearrange([qw(TYPE)],@args);
$self->type($type) if defined $type;
return $self; } |
sub type
{ my ($self,$type) = @_;
if( defined $type ) {
eval {$self->_load_module($type) };
if( $@ ){ $self->warn("Cannot find module $type, unable to set type"); }
else { $self->{'_type'} = $type; }
}
return $self->{'_type'} || $DEFAULT_TYPE;
}
1; } |
General documentation
User 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/MailList.shtml - About the mailing lists
Report bugs to the Bioperl bug tracking system to help us keep track
of the bugs and their resolution. Bug reports can be submitted via
email or the web:
bioperl-bugs@bioperl.org
http://bugzilla.bioperl.org/
AUTHOR - Jason Stajich | Top |
Additional contributors names and emails here
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _