e399f53ca6abf47c289eda845be502cb78e3f209
galt
  Fri Aug 27 23:49:56 2021 -0700
Somebody had removed this file, but encode liftOvers for hg38 and hg19 patches still need it.

diff --git src/hg/lib/bed5SourceVals.sql src/hg/lib/bed5SourceVals.sql
new file mode 100644
index 0000000..f425c67
--- /dev/null
+++ src/hg/lib/bed5SourceVals.sql
@@ -0,0 +1,18 @@
+# bed5SourceVals.sql was originally generated by the autoSql program, which also 
+# 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)
+);