df9e8bd3895a98d6324eea6fe30458e222172353
angie
  Mon Jun 3 12:47:14 2013 -0700
Fixed implementation of maxItems.  To reduce the delay before getting thefirst item in range, now bbi queries are limited to 100,000 items at a time,
so now there is a series of "chunk" queries instead of one query per region
or chromosome.  for #6152

diff --git src/inc/annoStreamBigBed.h src/inc/annoStreamBigBed.h
index 06477b9..b57284b 100644
--- src/inc/annoStreamBigBed.h
+++ src/inc/annoStreamBigBed.h
@@ -1,13 +1,13 @@
 /* annoStreamBigBed -- subclass of annoStreamer for bigBed file or URL */
 
 #ifndef ANNOSTREAMBIGBED_H
 #define ANNOSTREAMBIGBED_H
 
 #include "annoStreamer.h"
 
 struct annoStreamer *annoStreamBigBedNew(char *fileOrUrl, struct annoAssembly *aa, int maxItems);
 /* Create an annoStreamer (subclass) object from a file or URL; if
  * maxItems is 0, all items from a query will be returned, otherwise
- * each query is limited to maxItems. */
+ * output is limited to maxItems. */
 
 #endif//ndef ANNOSTREAMBIGBED_H