a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/wigAsciiToBinary/wigZoom.c src/utils/wigAsciiToBinary/wigZoom.c
index ce5d70b..96116da 100644
--- src/utils/wigAsciiToBinary/wigZoom.c
+++ src/utils/wigAsciiToBinary/wigZoom.c
@@ -1,30 +1,29 @@
 /* wigZoom - process two column wiggle data and compress for zoom views
  *
  *	The ascii data file is simply two columns, white space separated:
  *	first column: offset within chromosome, 1 relative closed end
  *	second column: any real data value
  *
  *	Input arguments will be files to read and amount of points to
  *	put together for a zoomed view
  *
  */
 #include	"common.h"
 #include	"options.h"
 #include	"linefile.h"
 
-static char const rcsid[] = "$Id: wigZoom.c,v 1.5 2004/12/15 20:17:56 hiram Exp $";
 
 /* command line option specifications */
 static struct optionSpec optionSpecs[] = {
     {"dataSpan", OPTION_LONG_LONG},
     {"obsolete", OPTION_BOOLEAN},
     {NULL, 0}
 };
 
 static long long dataSpan = 1024;	/* bases spanned per data point */
 static boolean obsolete = FALSE;/*use this program even though it is obsolete*/
 
 static void usage()
 {
 errAbort(
     "wigZoom - process wiggle data to a zoomed view\n"