c3c65fde6dd5aa6f20860c7113eb9ee22cf35b96 markd Wed Jan 15 08:37:28 2020 -0800 Initial pass at 64bit blat index diff --git src/inc/ooc.h src/inc/ooc.h index 5b0bd9b..5633728 100644 --- src/inc/ooc.h +++ src/inc/ooc.h @@ -1,16 +1,16 @@ /* ooc.h - Stuff to handle overused N-mers (tiles) in genome * indexing schemes. */ /* Copyright 2001-2002 Jim Kent. All rights reserved. */ #ifndef OOC_H #define OOC_H -void oocMaskCounts(char *oocFile, bits32 *tileCounts, int tileSize, bits32 maxPat); +void oocMaskCounts(char *oocFile, bits64 *tileCounts, int tileSize, bits32 maxPat); /* Set items of tileCounts to maxPat if they are in oocFile. * Effectively masks this out of index.*/ -void oocMaskSimpleRepeats(bits32 *tileCounts, int seedSize, bits32 maxPat); +void oocMaskSimpleRepeats(bits64 *tileCounts, int seedSize, bits32 maxPat); /* Mask out simple repeats in index . */ #endif /* OOC_H */