a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/nib.c src/lib/nib.c
index 92917c0..d885513 100644
--- src/lib/nib.c
+++ src/lib/nib.c
@@ -1,28 +1,27 @@
 /* Nib - nibble (4 bit) representation of nucleotide sequences. 
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #include "common.h"
 #include "hash.h"
 #include "dnautil.h"
 #include "dnaseq.h"
 #include "nib.h"
 #include "sig.h"
 
-static char const rcsid[] = "$Id: nib.c,v 1.24 2007/03/13 20:43:05 kent Exp $";
 
 static char *findNibSubrange(char *fileName)
 /* find the colon starting a nib seq name/subrange in a nib file name, or NULL
  * if none */
 {
 char *baseName = strrchr(fileName, '/');
 baseName = (baseName == NULL) ? fileName : baseName+1;
 return strchr(baseName, ':');
 }
 
 static void parseSubrange(char *subrange, char *name, 
 	unsigned *start, unsigned *end)
 /* parse the subrange specification */
 {
 char *rangePart = strchr(subrange+1, ':');