01bd3b8eed853deb3d088e0d8ed98abb4a86084e kent Tue Apr 26 23:20:00 2011 -0700 Adding more metadata fields to the DNase inputs table. diff --git src/hg/lib/clusterInputDnase.sql src/hg/lib/clusterInputDnase.sql new file mode 100644 index 0000000..66877fc --- /dev/null +++ src/hg/lib/clusterInputDnase.sql @@ -0,0 +1,16 @@ +# clusterInputDnase.sql was originally generated by the autoSql program, which also +# generated clusterInputDnase.c and clusterInputDnase.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 clusterInputDnase ( + tableName varchar(255) not null, # Name of table used as an input + cellType varchar(255) not null, # Name of cell type + treatment varchar(255) not null, # Drug or other treatment given to cells while alive + replicate varchar(255) not null, # Replicate number + lab varchar(255) not null, # Lab this was done in + dateUnrestricted varchar(255) not null, # Date data becomes unrestricted + #Indices + PRIMARY KEY(tableName) +);