a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/txCluster.c src/hg/lib/txCluster.c index 1560051..37f5c1e 100644 --- src/hg/lib/txCluster.c +++ src/hg/lib/txCluster.c @@ -1,26 +1,25 @@ /* txCluster.c was originally generated by the autoSql program, which also * generated txCluster.h and txCluster.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 "txCluster.h" -static char const rcsid[] = "$Id: txCluster.c,v 1.1 2007/02/26 10:29:00 kent Exp $"; struct txCluster *txClusterLoad(char **row) /* Load a txCluster from row fetched with select * from txCluster * from database. Dispose of this with txClusterFree(). */ { struct txCluster *ret; AllocVar(ret); ret->txCount = sqlSigned(row[6]); ret->chrom = cloneString(row[0]); ret->chromStart = sqlSigned(row[1]); ret->chromEnd = sqlSigned(row[2]); ret->name = cloneString(row[3]); ret->score = sqlSigned(row[4]); safecpy(ret->strand, sizeof(ret->strand), row[5]);