a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/dnaMotifSql.c src/hg/lib/dnaMotifSql.c
index 49ad861..4be60d9 100644
--- src/hg/lib/dnaMotifSql.c
+++ src/hg/lib/dnaMotifSql.c
@@ -1,27 +1,26 @@
 /* dnaMotifSql.c was originally generated by the autoSql program, which also 
  * generated dnaMotifSql.h and dnaMotifSql.sql.  This module links the database and
  * the RAM representation of objects. */
 
 #include "common.h"
 #include "linefile.h"
 #include "jksql.h"
 #include "dnaMotif.h"
 #include "dnaMotifSql.h"
 #include "dystring.h"
 
-static char const rcsid[] = "$Id: dnaMotifSql.c,v 1.5 2008/09/17 18:10:13 kent Exp $";
 
 struct dnaMotif *dnaMotifLoad(char **row)
 /* Load a dnaMotif from row fetched with select * from dnaMotif
  * from database.  Dispose of this with dnaMotifFree(). */
 {
 struct dnaMotif *ret;
 int sizeOne;
 
 AllocVar(ret);
 ret->columnCount = sqlSigned(row[1]);
 ret->name = cloneString(row[0]);
 sqlFloatDynamicArray(row[2], &ret->aProb, &sizeOne);
 assert(sizeOne == ret->columnCount);
 sqlFloatDynamicArray(row[3], &ret->cProb, &sizeOne);
 assert(sizeOne == ret->columnCount);