a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/cdsEvidence.c src/hg/lib/cdsEvidence.c index ff4d18e..7b3e5d2 100644 --- src/hg/lib/cdsEvidence.c +++ src/hg/lib/cdsEvidence.c @@ -1,27 +1,26 @@ /* cdsEvidence.c was originally generated by the autoSql program, which also * generated cdsEvidence.h and cdsEvidence.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 "bed.h" #include "cdsEvidence.h" -static char const rcsid[] = "$Id: cdsEvidence.c,v 1.3 2007/03/16 17:34:48 kent Exp $"; struct cdsEvidence *cdsEvidenceLoad(char **row) /* Load a cdsEvidence from row fetched with select * from cdsEvidence * from database. Dispose of this with cdsEvidenceFree(). */ { struct cdsEvidence *ret; AllocVar(ret); ret->cdsCount = sqlSigned(row[8]); ret->name = cloneString(row[0]); ret->start = sqlSigned(row[1]); ret->end = sqlSigned(row[2]); ret->source = cloneString(row[3]); ret->accession = cloneString(row[4]); ret->score = sqlDouble(row[5]);