Skip to content
Snippets Groups Projects
Commit b09454db authored by Marek Szuba's avatar Marek Szuba
Browse files

MicroRNA: use Bio::EnsEMBL::Utils::Exception::warning() instead of carp()

parent bc9cf2c6
No related branches found
No related tags found
2 merge requests!371Add support for mature RNA products of transcripts (e.g. MicroRNA) to the API and schema,!371Add support for mature RNA products of transcripts (e.g. MicroRNA) to the API and schema
......@@ -59,7 +59,7 @@ use vars qw($AUTOLOAD);
use strict;
use warnings;
use Bio::EnsEMBL::Utils::Exception qw(throw warning );
use Bio::EnsEMBL::Utils::Exception qw( throw warning );
use Bio::EnsEMBL::Utils::Argument qw( rearrange );
use Bio::EnsEMBL::Utils::Scalar qw( assert_ref wrap_array );
use Scalar::Util qw(weaken);
......@@ -141,8 +141,8 @@ sub arm {
my $n_arms = scalar @{$arm_attrs};
if ($n_arms > 0) {
if ($n_arms > 1) {
carp("MicroRNA " . $self->display_id() .
" has multiple arm attributes, using first");
warning("MicroRNA " . $self->display_id() .
" has multiple arm attributes, using first");
}
$self->{'arm'} = $arm_attrs->[0]->value();
}
......
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