65c9bf32e6b0a737fe565796cc03d69982c2c099 angie Fri Dec 14 16:52:18 2012 -0800 Added #include in case some earlier-included file hasn't already done so. diff --git src/inc/bbiFile.h src/inc/bbiFile.h index f547393..949624d 100644 --- src/inc/bbiFile.h +++ src/inc/bbiFile.h @@ -1,22 +1,23 @@ /* bbiFile - Big Binary Indexed file. Stuff that's common between bigWig and bigBed. */ #ifndef BBIFILE_H #define BBIFILE_H #include "cirTree.h" #include "linefile.h" +#include "localmem.h" /* bigWig/bigBed file structure: * fixedWidthHeader * magic# 4 bytes * version 2 bytes * zoomLevels 2 bytes * chromosomeTreeOffset 8 bytes * fullDataOffset 8 bytes * fullIndexOffset 8 bytes * fieldCount 2 bytes (for bigWig 0) * definedFieldCount 2 bytes (for bigWig 0) * autoSqlOffset 8 bytes (for bigWig 0) (0 if no autoSql information) * totalSummaryOffset 8 bytes (0 in earlier versions of file lacking totalSummary) * uncompressBufSize 4 bytes (Size of uncompression buffer. 0 if uncompressed.) * reserved 8 bytes (0 for now)