a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/sage.c src/hg/lib/sage.c
index 5dda3d8..be48c07 100644
--- src/hg/lib/sage.c
+++ src/hg/lib/sage.c
@@ -1,25 +1,24 @@
 /* sage.c was originally generated by the autoSql program, which also 
  * generated sage.h and sage.sql.  This module links the database and
  * the RAM representation of objects. */
 
 #include "common.h"
 #include "linefile.h"
 #include "jksql.h"
 #include "sage.h"
 
-static char const rcsid[] = "$Id: sage.c,v 1.3 2005/04/13 06:25:56 markd Exp $";
 
 struct sage *sageLoad(char **row)
 /* Load a sage from row fetched with select * from sage
  * from database.  Dispose of this with sageFree(). */
 {
 struct sage *ret;
 int sizeOne;
 
 AllocVar(ret);
 ret->numTags = sqlSigned(row[4]);
 ret->numExps = sqlSigned(row[6]);
 ret->uni = sqlSigned(row[0]);
 strcpy(ret->gb, row[1]);
 strcpy(ret->gi, row[2]);
 ret->description = cloneString(row[3]);