a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/jkOwnLib/gfInternal.c src/jkOwnLib/gfInternal.c
index 26ff57b..f932e18 100644
--- src/jkOwnLib/gfInternal.c
+++ src/jkOwnLib/gfInternal.c
@@ -1,28 +1,27 @@
 /* Some stuff shared by gfClient and gfPcr. 
  * Copyright 2001-2004 Jim Kent. All rights reserved. */
 
 #include "common.h"
 #include "linefile.h"
 #include "dnaseq.h"
 #include "genoFind.h"
 #include "gfInternal.h"
 #include "errabort.h"
 #include "nib.h"
 #include "twoBit.h"
 
-static char const rcsid[] = "$Id: gfInternal.c,v 1.3 2006/06/22 16:24:44 kent Exp $";
 
 
 static int extendRespect(int oldX, int newX)
 /* Return newX modified slightly so as to be in same frame as oldX. */
 {
 int frame = oldX % 3;
 newX = newX - (newX % 3) + frame;
 return newX;
 }
 
 void gfiExpandRange(struct gfRange *range, int qSize, int tSize, 
 	boolean respectFrame, boolean isRc, int expansion)
 /* Expand range to cover an additional 500 bases on either side. */
 {
 int x;