df8dd3571b130c6e82a1ba5e6d274f42bce62f2a
kent
  Sat Dec 21 11:00:54 2013 -0800
Adding version number to usage statement.
diff --git src/utils/bedGraphPack/bedGraphPack.c src/utils/bedGraphPack/bedGraphPack.c
index 530dee1..fe4eb49 100644
--- src/utils/bedGraphPack/bedGraphPack.c
+++ src/utils/bedGraphPack/bedGraphPack.c
@@ -1,26 +1,26 @@
 /* bedGraphPack - Pack together adjacent records representing same value.. */
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
-  "bedGraphPack - Pack together adjacent records representing same value.\n"
+  "bedGraphPack v1 - Pack together adjacent records representing same value.\n"
   "usage:\n"
   "   bedGraphPack in.bedGraph out.bedGraph\n"
   "The input needs to be sorted by chrom and this is checked.  To put in a pipe\n"
   "use stdin and stdout in the command line in place of file names.\n"
   );
 }
 
 /* Command line validation table. */
 static struct optionSpec options[] = {
    {NULL, 0},
 };
 
 void bedGraphPack(char *input, char *output)
 /* bedGraphPack - Pack together adjacent records representing same value.. */
 {