f09e062ead54042b3f2b20ea4f4addc21633625e
cline
  Mon Sep 19 17:16:29 2011 -0700
Changed in response to Redmine #5290 (tRNA and Rfam genes being represented poorly by kgXref).  The kgXref table now has two new fields: one for the tRNA name (which can be used to cross-reference the track items to tRNA Genes items), and one for the Rfam accession (which can be used for links to the appropriate Rfam model page).  txGeneXref fills in both of these fields, and splices the sequence names appropriately to pull out half-meaningful gene symbols and descriptions
diff --git src/hg/lib/kgXref.as src/hg/lib/kgXref.as
index 8287247..6d77f00 100644
--- src/hg/lib/kgXref.as
+++ src/hg/lib/kgXref.as
@@ -1,13 +1,14 @@
 table kgXref
 "Link together a Known Gene ID and a gene alias"
     (
     string kgID;        "Known Gene ID"
     string mRNA;        "mRNA ID"
     string spID;        "SWISS-PROT protein Accession number"
     string spDisplayID; "SWISS-PROT display ID"
     string geneSymbol;  "Gene Symbol"
     string refseq;      "RefSeq ID"
     string protAcc;     "NCBI protein Accession number"
     lstring description; "Description"
     string rfamAcc;     "Rfam accession number"
+    string tRnaName;    "Name from the tRNA track"
     )