041e957b60b256f4068d79cecffa93f7635e4ad7
wong
  Wed Apr 4 16:38:28 2012 -0700
removing bigBed.as file
diff --git src/hg/lib/bigBed.sql src/hg/lib/bigBed.sql
deleted file mode 100644
index ee9346c..0000000
--- src/hg/lib/bigBed.sql
+++ /dev/null
@@ -1,18 +0,0 @@
-# bed6.sql was originally generated by the autoSql program, which also 
-# generated bed6.c and bed6.h.  This creates the database representation of
-# an object which can be loaded and saved from RAM in a fairly 
-# automatic way.
-
-#Browser extensible data
-CREATE TABLE bed6 (
-    chrom varchar(255) not null,	# Human chromosome or FPC contig
-    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,	# Score from 0-1000
-    strand char(1) not null,	# + or -
-              #Indices
-    dummy varchar(255),                 #dummy column, this file is for a make to not fail
-    INDEX(chrom,start),
-    INDEX(chrom,end)
-);