Closed kwongj closed 6 years ago
It seems the answer is no.
According to the code the green tick actually only looks at COVERAGE=100 where it is defined as below:
COVERAGE 100 * ($hit{length}-$hit{gaps}) / $hit{slen}),
IDENTITY $hit{pident},
Should we change this behaviour?
It seems ticks are ONE HIT, with >95% COV. (no ID limit) Orange ? is everything else except no hits which is red cross.
$hit = @hits == 1 && int($hits[0]->{'%COVERAGE'}) >= 95
? $self->pass_fail( +1 )
: $self->pass_fail( 0, join(' + ', map { int($_->{'%COVERAGE'}).'%' } @hits) );
Should this be changed?
I've now added a legend to help clarify:
Do ticks represent 100% identity AND full length match?