442fef159db4b61a41789813c9068776ef2f8cfb
kate
  Mon Sep 17 19:39:24 2018 -0700
Pack mode. refs #21917

diff --git src/hg/inc/interact.h src/hg/inc/interact.h
index 21ea3ea..6f8881f 100644
--- src/hg/inc/interact.h
+++ src/hg/inc/interact.h
@@ -86,36 +86,30 @@
 #define interactTabOut(el,f) interactOutput(el,f,'\t','\n');
 /* Print out interact as a line in a tab-separated file. */
 
 #define interactCommaOut(el,f) interactOutput(el,f,',',',');
 /* Print out interact as a comma separated list including final comma. */
 
 /* -------------------------------- End autoSql Generated Code -------------------------------- */
 
 struct asObject *interactAsObj();
 /* Return asObject describing fields of barChart database table (includes bin) */
 
 struct interact *interactLoadAndValidate(char **row);
 /* Load a interact from row fetched with select * from interact
  * from database, validating fields.  Dispose of this with interactFree(). */
 
-#ifdef DEBUG
-struct bed *interactBedLoad(char **row);
-/* Load an interact from row fetched with select * from interact
- * from database, as a BED12.  Dispose of this with bedFree(). */
-#endif
-
 struct bed *interactToBed(struct interact *inter);
 /* Convert an interact to a BED12 */
 
 char *interactOtherChrom(struct interact *inter);
 /* Get other chromosome from an interaaction. Return NULL if same chromosome */
 
 int interactRegionCenter(int start, int end);
 /* Return genomic location of center of region */
 
 int interactRegionDistance(struct interact *inter);
 /* Return distance between region midpoints. Return -1 for other chromosome */
 
 int interactDistanceCmp(const void *va, const void *vb);
 /* Compare based on distance between region midpoints */