a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/hgGene/go.c src/hg/hgGene/go.c
index 6697b1c..e2c7c3c 100644
--- src/hg/hgGene/go.c
+++ src/hg/hgGene/go.c
@@ -1,26 +1,25 @@
 /* go - Gene Ontology annotations. */
 
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "spDb.h"
 #include "hgGene.h"
 #include "hdb.h"
 
-static char const rcsid[] = "$Id: go.c,v 1.9 2008/09/03 19:18:49 markd Exp $";
 
 static boolean goExists(struct section *section, 
 	struct sqlConnection *conn, char *geneId)
 /* Return TRUE if GO database exists and has something
  * on this one. */
 {
 char query[512];
 char *fbAcc = getFlyBaseId(conn, geneId);
 boolean useFbGo = (isFly() && fbAcc != NULL && sqlTableExists(conn, "fbGo"));
 if (!sqlDatabaseExists("go"))
     return(FALSE);
 if (useFbGo)
     {
     safef(query, sizeof(query),
 	  "select count(*) from fbGo where geneId = '%s'",