a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/hgc/txCdsInfo.c src/hg/hgc/txCdsInfo.c index fa03558..0e57c03 100644 --- src/hg/hgc/txCdsInfo.c +++ src/hg/hgc/txCdsInfo.c @@ -1,27 +1,26 @@ #include "common.h" #include "linefile.h" #include "hash.h" #include "jksql.h" #include "hdb.h" #include "web.h" #include "cdsEvidence.h" #include "txInfo.h" #include "trackDb.h" #include "hgc.h" -static char const rcsid[] = "$Id: txCdsInfo.c,v 1.9 2009/01/30 23:48:49 fanhsu Exp $"; void showTxInfo(char *geneName, struct trackDb *tdb, char *txInfoTable) /* Print out stuff from txInfo table. */ { struct sqlConnection *conn = hAllocConn(database); if (sqlTableExists(conn, txInfoTable)) { char query[512]; safef(query, sizeof(query), "select * from %s where name='%s'", txInfoTable, geneName); struct sqlResult *sr = sqlGetResult(conn, query); char **row; if ((row = sqlNextRow(sr)) != NULL) { struct txInfo *info = txInfoLoad(row); webNewSection("Transcript Information");