c88aa3723b09d7dfdf1d18360923130f601bf914 kent Mon Mar 14 11:36:12 2011 -0700 More work on new TFBS clustering stuff. diff --git src/hg/lib/clusterInputTrackTable2.sql src/hg/lib/clusterInputTrackTable2.sql new file mode 100644 index 0000000..f245978 --- /dev/null +++ src/hg/lib/clusterInputTrackTable2.sql @@ -0,0 +1,17 @@ +# clusterInputTrackTable2.sql was originally generated by the autoSql program, which also +# generated clusterInputTrackTable2.c and clusterInputTrackTable2.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 clusterInputTrackTable2 ( + tableName varchar(255) not null, # Name of table used as an input + source varchar(255) not null, # Name of cell line or other biological source + factor varchar(255) not null, # Name of factor/antibody + treatment varchar(255) not null, # Drug or other treatment given to cells while alive + #Indices + PRIMARY KEY(tableName), + INDEX(source(16)), + INDEX(factor(16)), + INDEX(treatment(16)) +);