a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/pcrResult.c src/hg/lib/pcrResult.c index 8234f51..33ddf3e 100644 --- src/hg/lib/pcrResult.c +++ src/hg/lib/pcrResult.c @@ -1,25 +1,24 @@ /* pcrResult -- support for internal track of hgPcr results. */ #include "common.h" #include "hdb.h" #include "hui.h" #include "obscure.h" #include "targetDb.h" #include "pcrResult.h" -static char const rcsid[] = "$Id: pcrResult.c,v 1.12 2010/05/11 01:43:30 kent Exp $"; char *pcrResultCartVar(char *db) /* Returns the cart variable name for PCR result track info for db. * Don't free the result! */ { static char buf[1024]; safef(buf, sizeof(buf), "%s_%s", PCR_RESULT_TRACK_NAME, db); return buf; } #define setPtIfNotNull(pt, val) if (pt != NULL) *pt = val boolean pcrResultParseCart(char *db, struct cart *cart, char **retPslFile, char **retPrimerFile, struct targetDb **retTarget)