a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/sage/createSageSummary.c src/hg/sage/createSageSummary.c
index ebd6ae1..2b6ba8a 100644
--- src/hg/sage/createSageSummary.c
+++ src/hg/sage/createSageSummary.c
@@ -3,31 +3,30 @@
  
 <P>createSageSummary takes the tagList file
 (i.e. SAGEmap_ug_tag-rel-Nla3-Hs) and the file produced by the
 createArraysForTags.pl script in ~/cc/sage/sage/extr
 (i.e. tagExpArrays.tab).  The output is a file of sage records from
 sage.h which have precalculate./createSageSummary SAGEmap_ug_tag-rel-Nla3-Hs  tagExpArrays.tab out.tabd unigene entries mean,median, and stdev
 of tag counts for each experiment.
 */
 
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 #include "sage.h"
 #include "sageCounts.h"
 
-static char const rcsid[] = "$Id: createSageSummary.c,v 1.3 2008/09/03 19:21:18 markd Exp $";
 
 struct sage *createNewSage(int numExp) 
 {
     struct sage *sg = NULL;
 
     AllocVar(sg);
     sg->numExps = numExp;
     sg->exps = needMem(sizeof(int) * sg->numExps);
     sg->meds = needMem(sizeof(float) * sg->numExps);
     sg->aves = needMem(sizeof(float) * sg->numExps);
     sg->stdevs = needMem(sizeof(float) * sg->numExps);
     return sg;
 }
 
 struct sage *loadSageTags(char *fileName, int numExps)