7a89988d6fd56140fd0b43c0f60430a210c24570
braney
  Thu May 19 16:41:30 2016 -0700
connecting things up for the long-range interaction display.

diff --git src/inc/bedTabix.h src/inc/bedTabix.h
index 97f82f6..4ff12b2 100644
--- src/inc/bedTabix.h
+++ src/inc/bedTabix.h
@@ -1,18 +1,18 @@
 
 #ifndef BEDTABIX_H
 #define BEDTABIX_H
 
 #include "linefile.h"
 
 struct bedTabixFile
 {
 struct lineFile *lf;
 };
 
 struct bedTabixFile *bedTabixFileMayOpen(char *fileOrUrl, char *chrom, int start, int end);
 /* Open a bed file that has been compressed and indexed by tabix */
 
-struct bed *bedTabixReadBeds(struct bedTabixFile *btf, char *chromName, int winStart, int winEnd, struct bed * (*loadBed)(), int minScore);
+struct bed *bedTabixReadBeds(struct bedTabixFile *btf, char *chromName, int winStart, int winEnd, struct bed * (*loadBed)());
 
 void bedTabixFileClose(struct bedTabixFile *btf);
 #endif //BEDTABIX_H