a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/wigToBedGraph/wigToBedGraph.c src/utils/wigToBedGraph/wigToBedGraph.c
index 8ce3e08..1627674 100644
--- src/utils/wigToBedGraph/wigToBedGraph.c
+++ src/utils/wigToBedGraph/wigToBedGraph.c
@@ -1,25 +1,24 @@
 /* wigToBedGraph - Convert wig files to bedGraph, merging adjacent items with identical 
  * values when possible. */
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 #include "obscure.h"
 #include "sqlNum.h"
 
-static char const rcsid[] = "$Id: wigToBedGraph.c,v 1.1 2010/01/05 22:16:44 kent Exp $";
 
 boolean clNoCollapse = FALSE;
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "wigToBedGraph - Convert wig files to bedGraph, merging adjacent items with identical values \n"
   "when possible.\n"
   "usage:\n"
   "   wigToBedGraph input.wig output.bedGraph\n"
   "options:\n"
   "   -noCollapse - do not collapse adjacent items of same value into single bedGraph record\n"
   );
 }