a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/cutter.c src/hg/lib/cutter.c
index e98516f..3014480 100644
--- src/hg/lib/cutter.c
+++ src/hg/lib/cutter.c
@@ -1,29 +1,28 @@
 /* cutter.c was originally generated by the autoSql program, which also 
  * generated cutter.h and cutter.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 "dnaseq.h"
 #include "dnautil.h"
 #include "bed.h"
 #include "cutter.h"
 
-static char const rcsid[] = "$Id: cutter.c,v 1.9 2006/03/02 08:03:52 aamp Exp $";
 
 struct cutter *cutterLoad(char **row)
 /* Load a cutter from row fetched with select * from cutter
  * from database.  Dispose of this with cutterFree(). */
 {
 struct cutter *ret;
 
 AllocVar(ret);
 ret->numSciz = sqlUnsigned(row[8]);
 ret->numCompanies = sqlUnsigned(row[10]);
 ret->numRefs = sqlUnsigned(row[12]);
 ret->name = cloneString(row[0]);
 ret->size = sqlUnsigned(row[1]);
 ret->matchSize = sqlUnsigned(row[2]);
 ret->seq = cloneString(row[3]);