src/hg/lib/geneTree.sql 1.1
1.1 2010/03/21 01:01:28 pchan
add geneTree table
Index: src/hg/lib/geneTree.sql
===================================================================
RCS file: src/hg/lib/geneTree.sql
diff -N src/hg/lib/geneTree.sql
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/hg/lib/geneTree.sql 21 Mar 2010 01:01:28 -0000 1.1
@@ -0,0 +1,12 @@
+# geneTree.sql was originally generated by the autoSql program, which also
+# generated geneTree.c and geneTree.h. This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly
+# automatic way.
+
+#A tree that represents the phylogenetic relation between a gene and its orthologs.
+CREATE TABLE geneTree (
+ name varchar(255) not null, # Name of gene
+ tree longblob not null, # Newick format of phylogenetic tree
+ #Indices
+ PRIMARY KEY(name)
+);