a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/altGraph.c src/hg/lib/altGraph.c index 4cc8075..d642c83 100644 --- src/hg/lib/altGraph.c +++ src/hg/lib/altGraph.c @@ -1,27 +1,26 @@ /* altGraph.c was originally generated by the autoSql program, which also * generated altGraph.h and altGraph.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 "altGraph.h" #include "geneGraph.h" -static char const rcsid[] = "$Id: altGraph.c,v 1.4 2005/12/12 02:48:40 kent Exp $"; struct altGraph *altGraphLoad(char **row) /* Load a altGraph from row fetched with select * from altGraph * from database. Dispose of this with altGraphFree(). */ { struct altGraph *ret; int sizeOne; AllocVar(ret); ret->vertexCount = sqlUnsigned(row[5]); ret->edgeCount = sqlUnsigned(row[8]); ret->mrnaRefCount = sqlSigned(row[11]); ret->id = sqlUnsigned(row[0]); ret->tName = cloneString(row[1]); ret->tStart = sqlSigned(row[2]);