Skip to content
Snippets Groups Projects
Commit 2198f606 authored by Daniel Rios's avatar Daniel Rios
Browse files

Return in ref_subseq when coordinates are indels

parent f05e0a1e
No related branches found
No related tags found
No related merge requests found
......@@ -393,7 +393,7 @@ sub ref_subseq{
my $end = shift;
my $strand = shift;
# special case for in-between (insert) coordinates
return '' if($self->start() == $self->end() + 1);
return '' if($start == $end + 1);
my $subseq;
if($self->adaptor){
......
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