a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/twoBit.c src/lib/twoBit.c index 3bb14c5..008b2d6 100644 --- src/lib/twoBit.c +++ src/lib/twoBit.c @@ -1,28 +1,27 @@ #include "common.h" #include "hash.h" #include "dnaseq.h" #include "dnautil.h" #include "sig.h" #include "localmem.h" #include "linefile.h" #include "obscure.h" #include "bPlusTree.h" #include "twoBit.h" #include <limits.h> -static char const rcsid[] = "$Id: twoBit.c,v 1.28 2009/09/23 18:42:29 angie Exp $"; static int countBlocksOfN(char *s, int size) /* Count number of blocks of N's (or n's) in s. */ { int i; boolean isN, lastIsN = FALSE; char c; int blockCount = 0; for (i=0; i<size; ++i) { c = s[i]; isN = (c == 'n' || c == 'N'); if (isN && !lastIsN) ++blockCount;