4ee8be3a646653395a336b28cb365fb8bc6dd16c galt Sat Aug 28 00:21:24 2021 -0700 oops. fixed. diff --git src/hg/lib/bed5SourceVals.sql src/hg/lib/bed5SourceVals.sql index f425c67..7cc1ecd 100644 --- src/hg/lib/bed5SourceVals.sql +++ src/hg/lib/bed5SourceVals.sql @@ -2,17 +2,17 @@ # generated bed5SourceVals.c and bed5SourceVals.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #BED5+ with a count, list of sources, and list of source scores for combined data CREATE TABLE bed5SourceVals ( chrom varchar(255) not null, # Reference sequence chromosome or scaffold chromStart int unsigned not null, # Start position in chromosome chromEnd int unsigned not null, # End position in chromosome name varchar(255) not null, # Name of item score int unsigned not null, # Display score (0-1000) sourceCount int unsigned not null, # Number of sources sourceIds longblob not null, # Source ids sourceScores longblob not null, # Source scores #Indices - PRIMARY KEY(chrom) + KEY `name` (`name`(16)) );