a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/findMotif/findMotif.c src/utils/findMotif/findMotif.c
index 5ef2cec..444494f 100644
--- src/utils/findMotif/findMotif.c
+++ src/utils/findMotif/findMotif.c
@@ -1,28 +1,27 @@
 /* findMotif - find specified motif in nib files. */
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 #include "dnautil.h"
 #include "dnaseq.h"
 #include "dnaLoad.h"
 #include "portable.h"
 #include "memalloc.h"
 #include "obscure.h"
 
-static char const rcsid[] = "$Id: findMotif.c,v 1.13 2009/07/07 17:58:56 hiram Exp $";
 
 char *chr = (char *)NULL;	/*	process the one chromosome listed */
 char *motif = (char *)NULL;	/*	specified motif string */
 unsigned motifLen = 0;		/*	length of motif	*/
 unsigned long long motifVal;	/*	motif converted to a number	*/
 unsigned long long complementVal;	/*	- strand complement	*/
 boolean bedOutput = TRUE;	/*	output bed file (default) */
 boolean wigOutput = FALSE;	/*  output wiggle format instead of bed file */
 char *strand = (char *)NULL;
 boolean doPlusStrand = TRUE;	/*	output bed file instead of wiggle */
 boolean doMinusStrand = TRUE;	/*	output bed file instead of wiggle */
 
 void usage()
 /* Explain usage and exit. */
 {