b1522ad0cbfeb2a6349472b7c753878bea3770c7
kate
  Tue May 7 14:27:39 2013 -0700
Create version of track clustered by target protein.  refs #10097
diff --git src/hg/lib/clusterInputTrackTable5.sql src/hg/lib/clusterInputTrackTable5.sql
new file mode 100644
index 0000000..da5d942
--- /dev/null
+++ src/hg/lib/clusterInputTrackTable5.sql
@@ -0,0 +1,17 @@
+# clusterInputTrackTable5.sql was originally generated by the autoSql program, which also 
+# generated clusterInputTrackTable5.c and clusterInputTrackTable5.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 clusterInputTrackTable4 (
+    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 varchar(255) not null,	# Name of antibody
+    cellType varchar(255) not null,	# Name of cell type
+    treatment varchar(255) not null,	# Drug or other treatment given to cells while alive
+    lab varchar(255) not null,	# Lab this was done in
+              #Indices
+    PRIMARY KEY(tableName)
+);