13b584581e6d7b1860e0cab97adc3594b1899308
braney
  Mon Aug 7 12:05:10 2023 -0700
add instaPort to bigBed support

diff --git src/hg/inc/bed.h src/hg/inc/bed.h
index f2b94a5..e54cb51 100644
--- src/hg/inc/bed.h
+++ src/hg/inc/bed.h
@@ -21,30 +21,33 @@
 #ifndef HASH_H
 #include "hash.h"
 #endif
 
 #ifndef RANGETREE_H
 #include "rangeTree.h"
 #endif
 
 #ifndef BASICBED_H
 #include "basicBed.h"
 #endif
 
 struct genePred *bedToGenePred(struct bed *bed);
 /* Convert a single bed to a genePred structure. */
 
+struct genePredExt *bedToGenePredExt(struct bed *bed);
+/* Convert a single bed to a genePredExt structure. */
+
 struct bed *bedFromGenePred(struct genePred *genePred);
 /* Convert a single genePred to a bed structure */
 
 /* Constraints that can be placed on bed fields: */
 enum charFilterType
     {
     cftIgnore = 0,
     cftSingleLiteral = 1,
     cftMultiLiteral = 2,
     };
 
 enum stringFilterType
     {
     sftIgnore = 0,
     sftSingleLiteral = 1,