a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/bestThreshold/bestThreshold.c src/utils/bestThreshold/bestThreshold.c
index 65616dd..9975b0d 100644
--- src/utils/bestThreshold/bestThreshold.c
+++ src/utils/bestThreshold/bestThreshold.c
@@ -1,24 +1,23 @@
 /* bestThreshold - Given a set of numbers for positive examples and one 
  * for negative examples, figure out threshold that best separates the 
  * two sets. */
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 
-static char const rcsid[] = "$Id: bestThreshold.c,v 1.1 2007/03/16 05:37:30 kent Exp $";
 
 double minDelta = 0.001;
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "bestThreshold - Given a set of numbers for positive examples and one for\n"
   "negative examples, figure out threshold that best separates the two sets.\n"
   "usage:\n"
   "   bestThreshold good bad\n"
   "options:\n"
   "   -xxx=XXX\n"
   );
 }