a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/hgGene/localization.c src/hg/hgGene/localization.c
index 6c33d7b..2179c66 100644
--- src/hg/hgGene/localization.c
+++ src/hg/hgGene/localization.c
@@ -1,26 +1,25 @@
 /* localization - info/predictions from various sources about protein 
  * localization in cellular compartments */
 
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "spDb.h"
 #include "hgGene.h"
 
-static char const rcsid[] = "$Id: localization.c,v 1.2 2005/12/08 19:02:56 fanhsu Exp $";
 
 
 static boolean localizationExists(struct section *section,
 	struct sqlConnection *conn, char *geneId)
 /* Return TRUE if localization and existance tables exist and have something
  * on this one. */
 {
 char query[256];
 /* mitopred - prediction of nuclear-encoded mitochondrial proteins */
 if (swissProtAcc != NULL && sqlTablesExist(conn, "mitopred"))
     {
     safef(query, sizeof(query),
 	  "select count(*) from mitopred where name = '%s' or name = '%s'",
 	  swissProtAcc, spAnyAccToId(spConn, swissProtAcc));
     if (sqlQuickNum(conn, query) > 0)