a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/dnaMotif.c src/lib/dnaMotif.c
index 950bc02..042e7b9 100644
--- src/lib/dnaMotif.c
+++ src/lib/dnaMotif.c
@@ -1,27 +1,26 @@
 /* dnaMotif.c was originally generated by the autoSql program, which also 
  * generated dnaMotif.h and dnaMotif.sql.  This module links the database and
  * the RAM representation of objects. */
 
 #include "common.h"
 #include "linefile.h"
 #include "sqlList.h"
 #include "dystring.h"
 #include "dnaMotif.h"
 #include "portable.h"
 
-static char const rcsid[] = "$Id: dnaMotif.c,v 1.5 2009/09/07 23:40:22 markd Exp $";
 
 struct dnaMotif *dnaMotifCommaIn(char **pS, struct dnaMotif *ret)
 /* Create a dnaMotif out of a comma separated string. 
  * This will fill in ret if non-null, otherwise will
  * return a new dnaMotif */
 {
 char *s = *pS;
 int i;
 
 if (ret == NULL)
     AllocVar(ret);
 ret->name = sqlStringComma(&s);
 ret->columnCount = sqlSignedComma(&s);
 s = sqlEatChar(s, '{');
 AllocArray(ret->aProb, ret->columnCount);