a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/chainDb.c src/hg/lib/chainDb.c index e17f6a0..175d74f 100644 --- src/hg/lib/chainDb.c +++ src/hg/lib/chainDb.c @@ -3,31 +3,30 @@ * the RAM representation of objects. * * This module was subsequently modified to blend better with the non-database * representation of chains. This module really only deals with the chain * header in the database. The blocks of the chain are loaded elsewhere, * and indeed in another table. */ #include "common.h" #include "linefile.h" #include "dystring.h" #include "jksql.h" #include "chain.h" #include "chainDb.h" #include "hdb.h" -static char const rcsid[] = "$Id: chainDb.c,v 1.13 2009/09/24 23:15:44 hiram Exp $"; void chainHeadStaticLoad(char **row, struct chain *ret) /* Load a row from chain table into ret. The contents of ret will * be replaced at the next call to this function. */ { ret->score = atof(row[0]); ret->tName = row[1]; ret->tSize = sqlUnsigned(row[2]); ret->tStart = sqlUnsigned(row[3]); ret->tEnd = sqlUnsigned(row[4]); ret->qName = row[5]; ret->qSize = sqlUnsigned(row[6]); ret->qStrand = row[7][0]; ret->qStart = sqlUnsigned(row[8]);