Skip to content
Snippets Groups Projects
Commit 2966d9ca authored by Arne Stabenau's avatar Arne Stabenau
Browse files

slice->end -->slice->chr_end

parent 376f7832
No related branches found
No related tags found
No related merge requests found
......@@ -1109,8 +1109,8 @@ sub _transform_to_Slice {
$self->end ($mapped[0]->end - $slice->chr_start + 1);
$self->strand ($mapped[0]->strand);
} else {
$self->start ($slice->end - $mapped[0]->end + 1);
$self->end ($slice->end - $mapped[0]->start + 1);
$self->start ($slice->chr_end - $mapped[0]->end + 1);
$self->end ($slice->chr_end - $mapped[0]->start + 1);
$self->strand ($mapped[0]->strand * -1);
}
......
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