src/hg/hgTables/hgTables.c 1.180
1.180 2009/03/18 01:34:52 kent
Getting filters to work on bigBed. Next up - intersections!
Index: src/hg/hgTables/hgTables.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgTables/hgTables.c,v
retrieving revision 1.179
retrieving revision 1.180
diff -b -B -U 4 -r1.179 -r1.180
--- src/hg/hgTables/hgTables.c 17 Mar 2009 20:48:36 -0000 1.179
+++ src/hg/hgTables/hgTables.c 18 Mar 2009 01:34:52 -0000 1.180
@@ -1312,9 +1312,9 @@
void doTabOutTable( char *db, char *table, FILE *f, struct sqlConnection *conn, char *fields)
/* Do tab-separated output on fields of a single table. */
{
if (isBigBed(table))
- bigBedTabOut(table, conn, fields, f);
+ bigBedTabOut(db, table, conn, fields, f);
else if (isCustomTrack(table))
{
struct trackDb *track = findTrack(table, fullTrackList);
doTabOutCustomTracks(track, conn, fields, f);