fc1c5020b82780a1af845c8ab81c9c964c9e82d9
kent
  Fri Mar 14 11:41:50 2014 -0700
Adding version to usage message.
diff --git src/utils/bigBedToBed/bigBedToBed.c src/utils/bigBedToBed/bigBedToBed.c
index 1ba3d28..a93096b 100644
--- src/utils/bigBedToBed/bigBedToBed.c
+++ src/utils/bigBedToBed/bigBedToBed.c
@@ -6,31 +6,31 @@
 #include "localmem.h"
 #include "udc.h"
 #include "bigBed.h"
 #include "obscure.h"
 
 
 char *clChrom = NULL;
 int clStart = -1;
 int clEnd = -1;
 int maxItems = 0;
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
-  "bigBedToBed - Convert from bigBed to ascii bed format.\n"
+  "bigBedToBed v1 - Convert from bigBed to ascii bed format.\n"
   "usage:\n"
   "   bigBedToBed input.bb output.bed\n"
   "options:\n"
   "   -chrom=chr1 - if set restrict output to given chromosome\n"
   "   -start=N - if set, restrict output to only that over start\n"
   "   -end=N - if set, restict output to only that under end\n"
   "   -maxItems=N - if set, restrict output to first N items\n"
   "   -udcDir=/dir/to/cache - place to put cache for remote bigBed/bigWigs\n"
   );
 }
 
 static struct optionSpec options[] = {
    {"chrom", OPTION_STRING},
    {"start", OPTION_INT},
    {"end", OPTION_INT},