Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl
Commits
dd928dc6
Commit
dd928dc6
authored
Jan 28, 2008
by
Ian Longden
Browse files
remove unitialised message by checking for level first
parent
36bf079c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
misc-scripts/xref_mapping/XrefMapper/BasicMapper.pm
misc-scripts/xref_mapping/XrefMapper/BasicMapper.pm
+5
-3
No files found.
misc-scripts/xref_mapping/XrefMapper/BasicMapper.pm
View file @
dd928dc6
...
...
@@ -2762,9 +2762,11 @@ GSQL
next
;
}
}
if
(
$level
{
$ex_db_id
}
>
$best_gene_level
){
$best_gene_xref
=
$xref_id
;
$best_gene_level
=
$level
{
$ex_db_id
};
if
(
defined
(
$level
{
$ex_db_id
})){
if
(
$level
{
$ex_db_id
}
>
$best_gene_level
){
$best_gene_xref
=
$xref_id
;
$best_gene_level
=
$level
{
$ex_db_id
};
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment