52b2c267e2dd82aa5853fb392dfc099442b5001b angie Fri Nov 2 16:12:51 2012 -0700 Adding missing #include, for includers of bbiFile.h that haven't already included linefile.h. diff --git src/inc/bbiFile.h src/inc/bbiFile.h index c191d77..f547393 100644 --- src/inc/bbiFile.h +++ src/inc/bbiFile.h @@ -1,21 +1,22 @@ /* 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" /* 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)