From 4fae949a3a571bdcf292e18f792f2495024c36c0 Mon Sep 17 00:00:00 2001 From: James Smith <js5@sanger.ac.uk> Date: Fri, 31 Oct 2008 17:34:18 +0000 Subject: [PATCH] commented out shouts --- modules/Bio/EnsEMBL/External/BlastAdaptor.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/Bio/EnsEMBL/External/BlastAdaptor.pm b/modules/Bio/EnsEMBL/External/BlastAdaptor.pm index fad5a9f703..9dfd9574cc 100644 --- a/modules/Bio/EnsEMBL/External/BlastAdaptor.pm +++ b/modules/Bio/EnsEMBL/External/BlastAdaptor.pm @@ -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; } -- GitLab