src/utils/bigWigInfo/bigWigInfo.c 1.5
1.5 2009/11/12 23:15:52 kent
First cut of compressed bigWig/bigBed stuff. So far read side should be complete including Genome Browser, Table Browser, wigToBigWig and bigWig utility functions. Still to do bedGraphToBigWig and bedToBigBed.
Index: src/utils/bigWigInfo/bigWigInfo.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/bigWigInfo/bigWigInfo.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -B -U 4 -r1.4 -r1.5
--- src/utils/bigWigInfo/bigWigInfo.c 7 Nov 2009 19:30:32 -0000 1.4
+++ src/utils/bigWigInfo/bigWigInfo.c 12 Nov 2009 23:15:52 -0000 1.5
@@ -35,15 +35,15 @@
{
struct bbiFile *bwf = bigWigFileOpen(fileName);
printf("version: %d\n", bwf->version);
printf("isSwapped: %d\n", bwf->isSwapped);
-printf("zoomLevels: %d\n", bwf->zoomLevels);
printf("primaryDataSize: %lld\n", (long long)(bwf->unzoomedIndexOffset - bwf->unzoomedDataOffset));
if (bwf->levelList != NULL)
{
long long indexEnd = bwf->levelList->dataOffset;
printf("primaryIndexSize: %lld\n", indexEnd - bwf->unzoomedIndexOffset);
}
+printf("zoomLevels: %d\n", bwf->zoomLevels);
struct bbiZoomLevel *zoom;
for (zoom = bwf->levelList; zoom != NULL; zoom = zoom->next)
printf("\t%d\n", zoom->reductionLevel);
struct bbiChromInfo *chrom, *chromList = bbiChromList(bwf);