src/hg/lib/chromGraphFactory.c 1.19

1.19 2010/06/04 20:46:19 galt
adding some more search tables before we actually run off the end
Index: src/hg/lib/chromGraphFactory.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/chromGraphFactory.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -b -B -U 4 -r1.18 -r1.19
--- src/hg/lib/chromGraphFactory.c	11 May 2010 01:43:29 -0000	1.18
+++ src/hg/lib/chromGraphFactory.c	4 Jun 2010 20:46:19 -0000	1.19
@@ -212,9 +212,9 @@
 
 static char *findSnpTable(struct sqlConnection *conn)
 /* Return name of SNP table if any */
 {
-char *tables[] = {"snp131", "snp130", "snp129", "snp128", "snp127", "snp126", "snp125", "snp"};
+char *tables[] = {"snp134", "snp133", "snp132", "snp131", "snp130", "snp129", "snp128", "snp127", "snp126", "snp125", "snp"};
 int i;
 for (i=0; i<ArraySize(tables); ++i)
     if (sqlTableExists(conn, tables[i]))
 	return tables[i];