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

[ENSCORESW-834] Pass on slice to verifying code, so that it can catch rare circular cases.

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