4af4d9809ca679c39dd1cbf0d95a46c810bf8fcf kent Thu Jun 24 12:03:18 2010 -0700 Adding clusterInputTrackTable.as and sql file to support regulatory cluster tracks. diff --git src/hg/lib/clusterInputTrackTable.sql src/hg/lib/clusterInputTrackTable.sql new file mode 100644 index 0000000..1a6789a --- /dev/null +++ src/hg/lib/clusterInputTrackTable.sql @@ -0,0 +1,14 @@ +# clusterInputTrackTable.sql was originally generated by the autoSql program, which also +# generated clusterInputTrackTable.c and clusterInputTrackTable.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 clusterInputTrackTable ( + tableName varchar(255) not null, # Name of table used as an input + cell varchar(255) not null, # Name of cell line + #Indices + PRIMARY KEY(tableName), + INDEX (cell) + +);