a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/protFeat.c src/hg/lib/protFeat.c index d5c7be8..77fafec 100644 --- src/hg/lib/protFeat.c +++ src/hg/lib/protFeat.c @@ -1,26 +1,25 @@ /* protFeat.c was originally generated by the autoSql program, which also * generated protFeat.h and protFeat.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 "protFeat.h" -static char const rcsid[] = "$Id: protFeat.c,v 1.1 2007/03/29 08:04:07 kent Exp $"; void protFeatStaticLoad(char **row, struct protFeat *ret) /* Load a row from protFeat table into ret. The contents of ret will * be replaced at the next call to this function. */ { ret->protein = row[0]; ret->start = sqlSigned(row[1]); ret->end = sqlSigned(row[2]); ret->feature = row[3]; ret->score = sqlDouble(row[4]); } struct protFeat *protFeatLoad(char **row) /* Load a protFeat from row fetched with select * from protFeat