src/hg/lib/arcogdesc.sql 1.1

1.1 2009/10/14 20:27:57 holmes
adding arcog table
Index: src/hg/lib/arcogdesc.sql
===================================================================
RCS file: src/hg/lib/arcogdesc.sql
diff -N src/hg/lib/arcogdesc.sql
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/hg/lib/arcogdesc.sql	14 Oct 2009 20:27:57 -0000	1.1
@@ -0,0 +1,13 @@
+# arcogdesc.sql was originally generated by the autoSql program, which also 
+# generated arcogdesc.c and arcogdesc.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#arCOG Description
+CREATE TABLE arcogdesc (
+    name varchar(255) not null,	# arCOG name
+    code char(1) not null,	# COG Code
+    description varchar(255) not null,	# arCOG description
+              #Indices
+    PRIMARY KEY(name)
+);