src/inc/bigWig.h 1.13
1.13 2009/11/12 23:15:51 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/inc/bigWig.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/inc/bigWig.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -b -B -U 4 -r1.12 -r1.13
--- src/inc/bigWig.h 10 Nov 2009 05:45:47 -0000 1.12
+++ src/inc/bigWig.h 12 Nov 2009 23:15:51 -0000 1.13
@@ -29,8 +29,9 @@
char *chromSizes, /* Two column tab-separated file: <chromosome> <size>. */
int blockSize, /* Number of items to bundle in r-tree. 1024 is good. */
int itemsPerSlot, /* Number of items in lowest level of tree. 512 is good. */
boolean clipDontDie, /* If TRUE then clip items off end of chrom rather than dying. */
+ boolean compress, /* If TRUE then compress data. */
char *outName);
/* Convert ascii format wig file (in fixedStep, variableStep or bedGraph format)
* to binary big wig format. */