a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/ggCluster.c src/hg/lib/ggCluster.c
index fc1a6ce..4b1580d 100644
--- src/hg/lib/ggCluster.c
+++ src/hg/lib/ggCluster.c
@@ -1,31 +1,30 @@
 /*****************************************************************************
  * Copyright (C) 2000 Jim Kent.  This source code may be freely used         *
  * for personal, academic, and non-profit purposes.  Commercial use          *
  * permitted only by explicit agreement with Jim Kent (jim_kent@pacbell.net) *
  *****************************************************************************/
 /* ggCluster - This takes as input a list of mRNAs and produces
  * a list of mRNA clusters.  mRNAs are lumped into a cluster
  * if exons on the same strand overlap. */
 
 #include "common.h"
 #include "dnautil.h"
 #include "dnaseq.h"
 #include "geneGraph.h"
 #include "ggPrivate.h"
 
-static char const rcsid[] = "$Id: ggCluster.c,v 1.13 2007/02/12 01:58:13 kent Exp $";
 
 
 
 static void updateActiveClusters(struct ggMrnaCluster **pActiveClusters, 
     struct ggMrnaCluster **pFinishedClusters, char *strand, int tStart)
 /* Move clusters that could no longer match off active list onto finished list. */
 {
 struct ggMrnaCluster *mc, *ggNext, *newActive = NULL;
 for (mc = *pActiveClusters; mc != NULL; mc = ggNext)
     {
     ggNext = mc->next;
     if (differentString(mc->strand, strand) || mc->tEnd < tStart)
 	{
 	slAddHead(pFinishedClusters, mc);
 	}