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
8b50f7e8
Commit
8b50f7e8
authored
13 years ago
by
Glenn Proctor
Browse files
Options
Downloads
Patches
Plain Diff
Fix bug that was causing no names to be projected in species other than zebrafish.
parent
e59b6a8a
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
misc-scripts/xref_projection/project_display_xrefs.pl
+8
-11
8 additions, 11 deletions
misc-scripts/xref_projection/project_display_xrefs.pl
with
8 additions
and
11 deletions
misc-scripts/xref_projection/project_display_xrefs.pl
+
8
−
11
View file @
8b50f7e8
...
...
@@ -292,8 +292,6 @@ sub project_display_names {
# Modify the dbEntry to indicate it's not from this species - set info_type & info_text
my
$info_txt
=
"
from
$from_latin_species
gene
"
.
$from_gene
->
stable_id
();
# modify the display_id to have " (1 of 3)" etc if this is a one-to-many ortholog
my
$tuple_txt
=
"";
if
(
$total_gene_number
>
1
)
{
...
...
@@ -629,19 +627,16 @@ sub delete_go_terms {
sub
check_overwrite_display_xref
{
my
(
$to_gene
,
$from_dbname
,
$to_dbname
,
$ref_dbEntry
)
=
@_
;
my
$ret
=
0
;
if
(
!
$to_gene
->
external_name
()){
$ret
=
1
;
}
return
1
if
(
!
$to_gene
->
external_name
()
&&
$to_species
ne
"
zebrafish
");
if
(
$to_dbname
eq
"
RefSeq_dna_predicted
"
||
$to_dbname
eq
"
RefSeq_peptide_predicted
")
{
if
((
$from_species
eq
"
human
"
&&
$from_dbname
=~
/HGNC/
)
||
(
$from_species
eq
"
mouse
"
&&
$from_dbname
=~
/MarkerSymbol/
))
{
if
(
$to_species
eq
"
zebrafish
"
and
is_in_blacklist
(
$from_gene
->
display_xref
)){
return
$ret
;
if
(
$to_species
eq
"
zebrafish
"
and
is_in_blacklist
(
$from_gene
->
display_xref
)){
return
0
;
}
return
1
;
...
...
@@ -653,7 +648,6 @@ sub check_overwrite_display_xref {
my
$to_dbEntry
=
$to_gene
->
display_xref
();
my
$from_dbEntry
=
$from_gene
->
display_xref
();
my
$to_seq_region_name
=
$to_gene
->
seq_region_name
();
my
$return
=
0
;
return
1
if
(
$to_dbname
eq
"
Clone_based_ensembl_gene
"
or
$to_dbname
eq
"
Clone_based_vega_gene
");
...
...
@@ -761,10 +755,11 @@ sub fetch_homologies {
print
"
Fetching Compara homologies
\n
";
my
$from_species_alias
=
lc
(
Bio::EnsEMBL::
Registry
->
get_alias
(
$from_species
));
my
%homology_cache
;
my
$count
=
0
;
my
$homologies
=
$ha
->
fetch_all_by_MethodLinkSpeciesSet
(
$mlss
);
foreach
my
$homology
(
@
{
$homologies
})
{
...
...
@@ -793,9 +788,11 @@ sub fetch_homologies {
push
@
{
$homology_cache
{
$from_stable_id
}},
@to_stable_ids
;
$count
++
;
}
print
"
Done fetching
homologies
\n
";
print
"
Fetched
"
.
$count
.
"
homologies
\n
";
return
\
%homology_cache
;
...
...
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