diff --git a/misc-scripts/xref_mapping/XrefMapper/OfficialNaming.pm b/misc-scripts/xref_mapping/XrefMapper/OfficialNaming.pm index e36eb5dda5b1fa5bee7b2c832205c1f2fc33b9fa..9ceaff4d10f6a534b44f0aa606938d5596555837 100644 --- a/misc-scripts/xref_mapping/XrefMapper/OfficialNaming.pm +++ b/misc-scripts/xref_mapping/XrefMapper/OfficialNaming.pm @@ -1068,6 +1068,9 @@ sub find_from_other_sources{ $dbentrie_sth->execute($ext_db_name, $gene_id, "Gene"); $dbentrie_sth->bind_columns(\$display, \$xref_id, \$object_xref_id, \$level, \$desc); while($dbentrie_sth->fetch){ + if ($display =~ /^LOC/ || $display =~ /^SSC/) { + next; + } $gene_symbol = $display; $gene_symbol_xref_id = $xref_id; $$tran_source = $ext_db_name;