867f7584d7d398e4f537c5da770c58073e6a6534
kent
  Wed Mar 16 20:51:59 2011 -0700
Adding some more varients of clusterInput tracks, with more fields.  Hmm, not wild about this proliferation.
diff --git src/hg/lib/clusterInputTrackTable3.sql src/hg/lib/clusterInputTrackTable3.sql
new file mode 100644
index 0000000..5955d39
--- /dev/null
+++ src/hg/lib/clusterInputTrackTable3.sql
@@ -0,0 +1,17 @@
+# clusterInputTrackTable3.sql was originally generated by the autoSql program, which also 
+# generated clusterInputTrackTable3.c and clusterInputTrackTable3.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#Some information on tracks used as input for a clustering track
+CREATE TABLE clusterInputTrackTable3 (
+    tableName varchar(255) not null,	# Name of table used as an input
+    source varchar(255) not null,	# Name of source - linked to Exps table. Cell+treatment
+    factor varchar(255) not null,	# Name of factor/antibody
+    cell varchar(255) not null,		# Name of cell type
+    treatment varchar(255) not null,	# Drug or other treatment given to cells while alive
+              #Indices
+    PRIMARY KEY(tableName),
+    INDEX(source(16)),
+    INDEX(factor(16))
+);