a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/txGraph.c src/hg/lib/txGraph.c
index 5c13f2c..fbf14f1 100644
--- src/hg/lib/txGraph.c
+++ src/hg/lib/txGraph.c
@@ -1,26 +1,25 @@
 /* txGraph.c was originally generated by the autoSql program, which also 
  * generated txGraph.h and txGraph.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 "txGraph.h"
 
-static char const rcsid[] = "$Id: txGraph.c,v 1.7 2007/02/24 07:23:04 kent Exp $";
 
 struct txGraph *txGraphLoad(char **row)
 /* Load a txGraph from row fetched with select * from txGraph
  * from database.  Dispose of this with txGraphFree(). */
 {
 struct txGraph *ret;
 
 AllocVar(ret);
 ret->vertexCount = sqlUnsigned(row[5]);
 ret->edgeCount = sqlUnsigned(row[7]);
 ret->sourceCount = sqlSigned(row[9]);
 ret->tName = cloneString(row[0]);
 ret->tStart = sqlSigned(row[1]);
 ret->tEnd = sqlSigned(row[2]);
 ret->name = cloneString(row[3]);