a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/geneGraph.c src/hg/lib/geneGraph.c
index 07efea2..c4d5d80 100644
--- src/hg/lib/geneGraph.c
+++ src/hg/lib/geneGraph.c
@@ -6,31 +6,30 @@
 /* geneGraph - Relatively short, high level routines for using
  * (but not necessarily creating) a geneGraph.  A geneGraph
  * is a way of representing possible alt-splicing patterns
  * of a gene.
  */
 
 #include "common.h"
 #include "dnautil.h"
 #include "dnaseq.h"
 #include "geneGraph.h"
 #include "ggPrivate.h"
 #include "altGraphX.h"
 #include "geneGraph.h"
 #include "dystring.h"
 
-static char const rcsid[] = "$Id: geneGraph.c,v 1.25 2009/08/13 03:08:30 markd Exp $";
 
 void ggEvidenceFree(struct ggEvidence **pEl)
 /* Free a single dynamically allocated ggEvidence */
 {
 struct ggEvidence *el;
 
 if ((el = *pEl) == NULL) return;
 freez(pEl);
 }
 
 void ggEvidenceFreeList(struct ggEvidence **pList)
 /* Free a list of dynamically allocated ggEvidence's */
 {
 struct ggEvidence *el, *next;