Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl
Commits
db65301f
Commit
db65301f
authored
13 years ago
by
Andreas Kusalananda Kähäri
Browse files
Options
Downloads
Patches
Plain Diff
Make code do what its comments say.
parent
d2679435
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/Bio/EnsEMBL/IdMapping/ScoreBuilder.pm
+5
-5
5 additions, 5 deletions
modules/Bio/EnsEMBL/IdMapping/ScoreBuilder.pm
with
5 additions
and
5 deletions
modules/Bio/EnsEMBL/IdMapping/ScoreBuilder.pm
+
5
−
5
View file @
db65301f
...
...
@@ -180,10 +180,10 @@ sub internal_id_rescore {
sort
{
$b
<=>
$a
}
@
{
$matrix
->
get_Entries_for_source
(
$source
)
};
# nothing to do if we only have one mapping
next
unless
(
scalar
(
@entries
)
>
1
)
;
if
(
scalar
(
@entries
)
==
1
)
{
next
}
# only penalise if mappings are ambiguous
next
unless
(
$entries
[
0
]
->
score
=
=
$entries
[
1
]
->
score
)
;
if
(
$entries
[
0
]
->
score
!
=
$entries
[
1
]
->
score
)
{
next
}
# only penalise if one source id == target id where score == best
# score
...
...
@@ -197,15 +197,15 @@ sub internal_id_rescore {
}
}
next
unless
(
$ambiguous
);
if
(
!
$ambiguous
)
{
next
}
# now penalise those where source id != target id and score == best
# score
foreach
my
$e
(
@entries
)
{
if
(
$e
->
target
!=
$source
and
$e
->
score
==
$entries
[
0
]
->
score
()
)
{
# PENALTY:
This stable ID is not any longer on the same object
.
$matrix
->
set_score
(
$source
,
$e
->
target
(),
0.
8
*$e
->
score
()
);
# PENALTY:
Reduce score for ambiguous mappings
.
$matrix
->
set_score
(
$source
,
$e
->
target
(),
0.
9
*$e
->
score
()
);
$i
++
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment