a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/estOrientInfo.c src/hg/lib/estOrientInfo.c
index b2cdc9b..a062237 100644
--- src/hg/lib/estOrientInfo.c
+++ src/hg/lib/estOrientInfo.c
@@ -1,27 +1,26 @@
 /* estOrientInfo.c was originally generated by the autoSql program, which also 
  * generated estOrientInfo.h and estOrientInfo.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 "localmem.h"
 #include "estOrientInfo.h"
 
-static char const rcsid[] = "$Id: estOrientInfo.c,v 1.6 2005/07/03 23:22:36 markd Exp $";
 
 static char *createString = 
     "CREATE TABLE %s (\n"
     "    bin smallint unsigned not null,        # Bin for fast index\n"
     "    chrom varchar(255) not null,	        # Human chromosome or FPC contig\n"
     "    chromStart int unsigned not null,	# Start position in chromosome\n"
     "    chromEnd int unsigned not null,	# End position in chromosome\n"
     "    name varchar(255) not null,	        # Accession of EST\n"
     "    intronOrientation smallint not null,	# Orientation of introns with respect to EST\n"
     "    sizePolyA smallint not null,	        # Number of trailing A's\n"
     "    revSizePolyA smallint not null,	# Number of trailing A's on reverse strand\n"
     "    signalPos smallint not null,	        # Position of start of polyA signal relative to end of EST or 0 if no signal\n"
     "    revSignalPos smallint not null,	# PolyA signal position on reverse strand if any\n"
     "              #Indices\n"
     "    INDEX(chrom(%d),bin),\n"