Skip to content
Snippets Groups Projects
Commit 082259b6 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

The penalty on the position-based score for exons when an exon had a

phase change was removed because it meant that an exon whose sequence
and position had not changed would become a candidate for similarity
mapping.  This caused lots of criss-crossing stable ID history entries
between genes/transcripts/translations in some gene families.
parent 52088706
No related branches found
No related tags found
No related merge requests found
......@@ -402,11 +402,17 @@ sub calc_overlap_score {
my $score = ( $overlap/$source_length + $overlap/$target_length )/2;
# PENALTY:
# penalise by 10% if phase if different
if ( $source_exon->phase != $target_exon->phase ) {
$score *= 0.9;
}
# The following penalty was removed because it meant that an exon
# whose sequence and position had not changed would become a
# candidate for similarity mapping when its phase changed. This
# caused lots of criss-crossing stable ID history entries between
# genes/transcripts/translations in some gene families.
#
## PENALTY:
## penalise by 10% if phase if different
#if ( $source_exon->phase != $target_exon->phase ) {
#$score *= 0.9;
#}
# add score to scoring matrix if it's at least 0.5
if ( $score >= 0.5 ) {
......
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