a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/sageCounts.c src/hg/lib/sageCounts.c index 45275a3..c87fc77 100644 --- src/hg/lib/sageCounts.c +++ src/hg/lib/sageCounts.c @@ -1,25 +1,24 @@ /* sageCounts.c was originally generated by the autoSql program, which also * generated sageCounts.h and sageCounts.sql. This module links the database and * the RAM representation of objects. */ #include "common.h" #include "linefile.h" #include "jksql.h" #include "sageCounts.h" -static char const rcsid[] = "$Id: sageCounts.c,v 1.4 2005/04/13 06:25:56 markd Exp $"; struct sageCounts *sageCountsLoad(char **row) /* Load a sageCounts from row fetched with select * from sageCounts * from database. Dispose of this with sageCountsFree(). */ { struct sageCounts *ret; int sizeOne; AllocVar(ret); ret->numExps = sqlSigned(row[1]); strcpy(ret->tag, row[0]); sqlSignedDynamicArray(row[2], &ret->expCounts, &sizeOne); assert(sizeOne == ret->numExps); return ret; }