a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/jkOwnLib/ooc.c src/jkOwnLib/ooc.c index 6efc8d0..d2901a0 100644 --- src/jkOwnLib/ooc.c +++ src/jkOwnLib/ooc.c @@ -1,23 +1,22 @@ /* ooc.c - Stuff to handle overused N-mers (tiles) in genome * indexing schemes. */ /* Copyright 2001-2003 Jim Kent. All rights reserved. */ #include "common.h" #include "ooc.h" #include "sig.h" -static char const rcsid[] = "$Id: ooc.c,v 1.2 2003/09/09 21:44:02 kent Exp $"; void oocMaskCounts(char *oocFile, bits32 *tileCounts, int tileSize, bits32 maxPat) /* Set items of tileCounts to maxPat if they are in oocFile. * Effectively masks this out of index.*/ { if (oocFile != NULL) { bits32 sig, psz; FILE *f = mustOpen(oocFile, "rb"); boolean mustSwap = FALSE; mustReadOne(f, sig); mustReadOne(f, psz); if (sig == oocSig) mustSwap = FALSE;