9313ff9d8c8c1d45170eda93c7b177b0267c9431
jcasper
  Mon Jun 15 14:02:31 2015 -0700
Fixing bad bed detail .as description, refs #15567

diff --git src/hg/lib/bedDetail.c src/hg/lib/bedDetail.c
index d50f7c7..78bdccb 100644
--- src/hg/lib/bedDetail.c
+++ src/hg/lib/bedDetail.c
@@ -245,33 +245,30 @@
 "table bedDetail\n"
 "\"Browser extensible data, with extended fields for detail page\"\n"
 "   (\n"
 "   string chrom;      \"Reference sequence chromosome or scaffold\"\n"
 "   uint   chromStart; \"Start position in chromosome\"\n"
 "   uint   chromEnd;   \"End position in chromosome\"\n"
 "   string name;       \"Short Name of item\"\n"
 "   uint   score;      \"Score from 0-1000\"\n"
 "   char[1] strand;    \"+ or -\"\n"
 "   uint thickStart;   \"Start of where display should be thick (start codon)\"\n"
 "   uint thickEnd;     \"End of where display should be thick (stop codon)\"\n"
 "   uint reserved;     \"Used as itemRgb as of 2004-11-22\"\n"
 "   int blockCount;    \"Number of blocks\"\n"
 "   int[blockCount] blockSizes; \"Comma separated list of block sizes\"\n"
 "   int[blockCount] chromStarts; \"Start positions relative to chromStart\"\n"
-"   uint expCount;     \"Number of experiment values\"\n"
-"   int[expCount] expIds; \"Comma separated list of experiment IDs\"\n"
-"   float[expCount] expScores; \"Comma separated list of experiment scores\"\n"
 "   string id;         \"ID to bed used in URL to link back\"\n"
 "   lstring description; \"Long description of item for the details page\"\n"
 "   )\n"
 ;
 
 struct asObject *bedDetailAsObj()
 // Return asObject describing fields of bedDetail
 {
 return asParseText(bedDetailAutoSqlString);
 }
 
 struct bedDetail *bedDetailLoadWithGaps(char **row, int size)
 /* Load a bedDetail from row split from a file or from database,
    may have parts of BED not included.  Dispose of this with bedDetailFree().
    Size is total number of fields