a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/ggGraph.c src/hg/lib/ggGraph.c
index 9c4bd02..f16215d 100644
--- src/hg/lib/ggGraph.c
+++ src/hg/lib/ggGraph.c
@@ -3,31 +3,30 @@
  * for personal, academic, and non-profit purposes.  Commercial use          *
  * permitted only by explicit agreement with Jim Kent (jim_kent@pacbell.net) *
  *****************************************************************************/
 /* ggGraph - Third pass of routine that generates a representation
  * of possible splicing patterns of a gene as a graph from mrna
  * clusters. */
 
 #include "common.h"
 #include "dnautil.h"
 #include "dnaseq.h"
 #include "localmem.h"
 #include "ggPrivate.h"
 #include "hdb.h"
 #include "rangeTree.h"
 
-static char const rcsid[] = "$Id: ggGraph.c,v 1.27 2009/01/22 23:10:37 hiram Exp $";
 
 static int maxEvidence = 500;
 
 enum{ softEndBleedLimit = 5};  /* For soft ends allow some bleeding into next intron */
 
 static int ggEvidenceIx(struct ggEvidence *hayStack, struct ggEvidence *needle)
 /* return index of needle in haystack or -1 if not present */
 {
 int count = 0;
 struct ggEvidence *ge = NULL;
 for(ge = hayStack; ge != NULL; ge = ge->next)
     {
     if(needle->id == ge->id)
 	return count;
     count++;