a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/psl.c src/lib/psl.c
index fb623f3..17a94a7 100644
--- src/lib/psl.c
+++ src/lib/psl.c
@@ -7,31 +7,30 @@
 
 #include "common.h"
 #include "sqlNum.h"
 #include "sqlList.h"
 #include "localmem.h"
 #include "psl.h"
 #include "hash.h"
 #include "linefile.h"
 #include "dnaseq.h"
 #include "dystring.h"
 #include "fuzzyFind.h"
 #include "aliType.h"
 #include "binRange.h"
 #include "rangeTree.h"
 
-static char const rcsid[] = "$Id: psl.c,v 1.83 2010/04/19 23:18:40 markd Exp $";
 
 static char *createString = 
 "CREATE TABLE %s (\n"
     "%s"				/* Optional bin */
     "matches int unsigned not null,	# Number of bases that match that aren't repeats\n"
     "misMatches int unsigned not null,	# Number of bases that don't match\n"
     "repMatches int unsigned not null,	# Number of bases that match but are part of repeats\n"
     "nCount int unsigned not null,	# Number of 'N' bases\n"
     "qNumInsert int unsigned not null,	# Number of inserts in query\n"
     "qBaseInsert int unsigned not null,	# Number of bases inserted in query\n"
     "tNumInsert int unsigned not null,	# Number of inserts in target\n"
     "tBaseInsert int unsigned not null,	# Number of bases inserted in target\n"
     "strand char(2) not null,	# + or - for strand.  First character is query, second is target.\n"
     "qName varchar(255) not null,	# Query sequence name\n"
     "qSize int unsigned not null,	# Query sequence size\n"