Skip to content
Snippets Groups Projects
Commit e730db28 authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Skip projection of genes from sources with "clone" in the db name - should...

Skip projection of genes from sources with "clone" in the db name - should stop mouse clone names being projected to rat & kangaroo rat.
parent 146ef511
No related branches found
No related tags found
No related merge requests found
......@@ -242,8 +242,8 @@ sub project_display_names {
return if (!$all_sources && $dbname !~ /HGNC/);
# skip Vega clone names (possibly not needed)
#return if (lc($dbname) =~ /vega/ && $dbEntry->display_id() =~ /\./);
# Skip clone names if projecting all sources
return if (lc($dbname) =~ /clone/);
# 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();
......
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