cd8540f3042b909432e4257588c13d9249e583f2
angie
  Wed Apr 1 16:49:33 2015 -0700
hgTables fixes to support bigBed and VCF tracks that have no mysql table,
only a bigDataUrl setting that may point to a local file.
refs #15059

diff --git src/hg/hgTables/hgTables.h src/hg/hgTables/hgTables.h
index 914a36b..e9238d6 100644
--- src/hg/hgTables/hgTables.h
+++ src/hg/hgTables/hgTables.h
@@ -158,34 +158,30 @@
 
 struct asObject *asForTable(struct sqlConnection *conn, char *table);
 /* Get autoSQL description if any associated with table. */
 
 struct sqlFieldType *sqlFieldTypesFromAs(struct asObject *as);
 /* Convert asObject to list of sqlFieldTypes */
 
 char *connectingTableForTrack(char *rawTable);
 /* Return table name to use with all.joiner for track.
  * You can freeMem this when done. */
 
 char *chromTable(struct sqlConnection *conn, char *table);
 /* Get chr1_table if it exists, otherwise table.
  * You can freeMem this when done. */
 
-char *chrnTable(struct sqlConnection *conn, char *table);
-/* Return chrN_table if table is split, otherwise table.
- * You can freeMem this when done. */
-
 char *getDbTable(char *db, char *table);
 /* If table already contains its real database as a dot-prefix, then
  * return a clone of table; otherwise alloc and return db.table . */
 
 void doTabOutTable(char *database, char *table, FILE *f,
 	struct sqlConnection *conn, char *fields);
 /* Do tab-separated output on table. */
 
 struct slName *fullTableFields(char *db, char *table);
 /* Return list of fields in db.table.field format. */
 
 struct bed *getFilteredBeds(struct sqlConnection *conn,
 	char *table, struct region *region, struct lm *lm,
 	int *retFieldCount);
 /* Get list of beds on single region that pass filtering. */