a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/tigrOperon.c src/hg/lib/tigrOperon.c
index 1de6241..2b09948 100644
--- src/hg/lib/tigrOperon.c
+++ src/hg/lib/tigrOperon.c
@@ -1,26 +1,25 @@
 /* tigrOperon.c was originally generated by the autoSql program, which also 
  * generated tigrOperon.h and tigrOperon.sql.  This module links the database and
  * the RAM representation of objects. */
 
 #include "common.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "jksql.h"
 #include "tigrOperon.h"
 
-static char const rcsid[] = "$Id: tigrOperon.c,v 1.1 2004/08/25 12:05:00 aamp Exp $";
 
 struct tigrOperon *tigrOperonLoad(char **row)
 /* Load a tigrOperon from row fetched with select * from tigrOperon
  * from database.  Dispose of this with tigrOperonFree(). */
 {
 struct tigrOperon *ret;
 
 AllocVar(ret);
 ret->size = sqlUnsigned(row[1]);
 ret->name = cloneString(row[0]);
 {
 int sizeOne;
 sqlStringDynamicArray(row[2], &ret->genes, &sizeOne);
 assert(sizeOne == ret->size);
 }