dc23932b2dae91522d130c311ae3b28dbce488e6
braney
  Fri May 22 13:54:01 2015 -0700
add NCBI metadata to NCBI RefSeq track ( refs# 13673)

diff --git src/hg/lib/ncbiRefLink.sql src/hg/lib/ncbiRefLink.sql
new file mode 100644
index 0000000..ea89711
--- /dev/null
+++ src/hg/lib/ncbiRefLink.sql
@@ -0,0 +1,15 @@
+# ncbiRefLink.sql was originally generated by the autoSql program, which also 
+# generated ncbiRefLink.c and ncbiRefLink.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#Metadata for NCBI RefSeq Genes
+CREATE TABLE ncbiRefLink (
+    id varchar(255) not null,	# transcript id
+    gbKey varchar(255) not null,	# molecule type
+    gene varchar(255) not null,	# gene name
+    dbXref varchar(255) not null,	# database cross reference
+    product varchar(255) not null,	# product
+              #Indices
+    PRIMARY KEY(id)
+);