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

ENSCORESW-834 - Improvement of circular genome support in AlignFeatures.

parent c9fa4255
No related branches found
No related tags found
No related merge requests found
......@@ -184,7 +184,8 @@ FEATURE:
my $hstart = $feat->hstart();
my $hend = $feat->hend();
my $hstrand = $feat->hstrand();
$self->_check_start_end_strand( $hstart, $hend, $hstrand );
my $hslice = $feat->slice();
$self->_check_start_end_strand( $hstart, $hend, $hstrand, $hslice );
my $cigar_string = $feat->cigar_string();
if ( !$cigar_string ) {
......
......@@ -110,7 +110,8 @@ sub store{
#sanity check the hstart and hend
my $hstart = $feat->hstart();
my $hend = $feat->hend();
$self->_check_start_end_strand($hstart,$hend,1);
my $hslice = $feat->slice();
$self->_check_start_end_strand($hstart,$hend,1,$hslice);
my $cigar_string = $feat->cigar_string();
if(!$cigar_string) {
......
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