c9b92c7eb2a050e370a62c1a6bb3bc7f54bc87d7
kent
  Wed Mar 16 21:35:24 2011 -0700
Changing cell field to cellType to better connect with Encode controlled vocab.
diff --git src/hg/lib/clusterInputTrackTable4.sql src/hg/lib/clusterInputTrackTable4.sql
index 7191a13..b1f92a3 100644
--- src/hg/lib/clusterInputTrackTable4.sql
+++ src/hg/lib/clusterInputTrackTable4.sql
@@ -1,18 +1,18 @@
 # 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
+    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),
     INDEX(source(16)),
     INDEX(factor(16))
 );