a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/hgc/expClick.c src/hg/hgc/expClick.c
index be9bc54..245b759 100644
--- src/hg/hgc/expClick.c
+++ src/hg/hgc/expClick.c
@@ -1,30 +1,29 @@
 /* Handle details pages for expression ratio tracks. */
 
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 #include "hgc.h"
 #include "hui.h"
 #include "expRecord.h"
 #include "obscure.h"
 #include "cheapcgi.h"
 #include "genePred.h"
 #include "affyAllExonProbe.h"
 #include "microarray.h"
 
-static char const rcsid[] = "$Id: expClick.c,v 1.25 2010/05/11 01:43:28 kent Exp $";
 
 /* global flag to indicate if the track is a cancer genomics track */
 boolean isCancerGenomicsTrack = FALSE;
 
 static struct rgbColor getColorForExprBed(float val, float max,
         enum expColorType colorScheme)
 /* Return the correct color for a given score */
 {
 float absVal = fabs(val);
 struct rgbColor color;
 int colorIndex = 0;
 
 /* if log score is -10000 data is missing */
 if(val == -10000)
     {