Skip to content
Snippets Groups Projects
Commit fa422505 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

In map_indel(): Remove unused variable.

parent af3a76a7
No related branches found
No related tags found
No related merge requests found
...@@ -675,7 +675,6 @@ sub map_indel { ...@@ -675,7 +675,6 @@ sub map_indel {
unless ( defined $hash ) { unless ( defined $hash ) {
throw("Type $type is neither to or from coordinate systems"); throw("Type $type is neither to or from coordinate systems");
} }
my $last_used_pair;
my @indel_coordinates; my @indel_coordinates;
my ( $start_idx, $end_idx, $mid_idx, $pair, $self_coord ); my ( $start_idx, $end_idx, $mid_idx, $pair, $self_coord );
...@@ -711,7 +710,6 @@ sub map_indel { ...@@ -711,7 +710,6 @@ sub map_indel {
push @indel_coordinates, $to; push @indel_coordinates, $to;
last; last;
} }
$last_used_pair = $pair;
} }
return @indel_coordinates; return @indel_coordinates;
......
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