Skip to content
Snippets Groups Projects
Commit 52badf39 authored by Kieron Taylor's avatar Kieron Taylor :angry:
Browse files

[ENSCORESW-1038] Fix bug in negative stranded assembly exceptions. Scoped...

[ENSCORESW-1038] Fix bug in negative stranded assembly exceptions. Scoped variables were forgetting their new values and coming back undef.
parent 044f5660
No related branches found
No related tags found
No related merge requests found
......@@ -363,8 +363,8 @@ sub _remap {
} ## end if ($dest_slice->is_circular...)
} else { # Negative strand
my $new_start = $slice_end - $end + 1;
my $new_end = $slice_end - $start + 1;
$new_start = $slice_end - $end + 1;
$new_end = $slice_end - $start + 1;
if ($slice->is_circular()) {
......
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