Skip to content
Snippets Groups Projects
Commit bf3799f4 authored by Web Admin's avatar Web Admin
Browse files

remove shouts

parent 6686372c
No related branches found
No related tags found
No related merge requests found
......@@ -264,18 +264,18 @@ sub store {
my $ret_value = undef;
if( $obj->isa("Bio::Tools::Run::SearchMulti") ) {
$ret_value = $self->store_search_multi( $obj, @_ );
warn "Just stored as Bio::Tools::Run::SearchMulti";
# warn "Just stored as Bio::Tools::Run::SearchMulti";
} elsif( $obj->isa( "Bio::Search::Result::ResultI" ) ) {
$ret_value = $self->store_result( $obj, @_ );
warn "Just stored as Bio::Tools::Result::ResultI";
# warn "Just stored as Bio::Tools::Result::ResultI";
} elsif( $obj->isa( "Bio::Search::Hit::HitI" ) ) {
$ret_value = $self->store_hit( $obj, @_ );
warn "Just stored as Bio::Tools::Hit::HitI";
# warn "Just stored as Bio::Tools::Hit::HitI";
} elsif( $obj->isa( "Bio::Search::HSP::HSPI" ) ) {
$ret_value = $self->store_hsp( $obj, @_ );
warn "Just stored as Bio::Tools::HSP::HSPI";
# warn "Just stored as Bio::Tools::HSP::HSPI";
} else {
warn "DID NOT STORE ".ref($obj);
# warn "DID NOT STORE ".ref($obj);
$self->throw( "Do not know how to store objects of type ".ref($obj) );
return undef;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment