8fbe3d525f15c3f5090d9ad67aa90d6f3df2bdd3
jcasper
  Wed Feb 19 10:49:13 2020 -0800
Fixing malformed tableInfo for converting hic to BED.  Should
be bed3, not bed5.  refs #24988

diff --git src/hg/hgTables/hic.c src/hg/hgTables/hic.c
index 14cde67..cad21a8 100644
--- src/hg/hgTables/hic.c
+++ src/hg/hgTables/hic.c
@@ -52,31 +52,30 @@
 // NB: Not planning to do hic tracks via filenames in tables.  If this changes,
 // add a check and a call to hicFileNameFromTable(), which will have to be written.
 return fileName;
 }
 
 struct hTableInfo *hicToHti(char *table)
 /* Get standard fields of hic into hti structure. */
 {
 struct hTableInfo *hti;
 AllocVar(hti);
 hti->rootName = cloneString(table);
 hti->isPos= TRUE;
 safecpy(hti->chromField, sizeof(hti->chromField), "chrom");
 safecpy(hti->startField, sizeof(hti->startField), "chromStart");
 safecpy(hti->endField, sizeof(hti->endField), "chromEnd");
-safecpy(hti->scoreField, sizeof(hti->scoreField), "value");
 hti->type = cloneString("hic");
 return hti;
 }
 
 struct slName *hicGetFields()
 /* Get fields of hic as simple name list.  We represent hic with an interact structure, so
  * this is really just an interact as object. */
 {
 struct asObject *as = interactAsObj();
 return asColNames(as);
 }
 
 struct sqlFieldType *hicListFieldsAndTypes()
 /* Get fields of hic as list of sqlFieldType (again, this is really just the list of interact fields. */
 {