Skip to content
Snippets Groups Projects
Commit 5d49c39f authored by Magali Ruffier's avatar Magali Ruffier
Browse files

ENSCORESW-1025: reinstate phase check

ignoring phase creates more false positives than false negatives
also improves the overall exon mapping
parent 9fcdf2ee
No related branches found
No related tags found
No related merge requests found
......@@ -420,9 +420,9 @@ sub calc_overlap_score {
#
## PENALTY:
## penalise by 10% if phase if different
#if ( $source_exon->phase != $target_exon->phase ) {
#$score *= 0.9;
#}
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