src/hg/hgTables/hgTables.h 1.143

1.143 2010/04/13 05:51:25 kent
Improving BED output for makeItems.
Index: src/hg/hgTables/hgTables.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgTables/hgTables.h,v
retrieving revision 1.142
retrieving revision 1.143
diff -b -B -U 4 -r1.142 -r1.143
--- src/hg/hgTables/hgTables.h	13 Apr 2010 04:42:01 -0000	1.142
+++ src/hg/hgTables/hgTables.h	13 Apr 2010 05:51:25 -0000	1.143
@@ -790,9 +790,9 @@
 
 struct bedFilter *bedFilterForCustomTrack(char *ctName);
 /* If the user specified constraints, then translate them to a bedFilter. */
 
-struct bed *customTrackGetFilteredBeds(char *name, struct region *regionList,
+struct bed *customTrackGetFilteredBeds(char *db, char *name, struct region *regionList,
 	struct lm *lm, int *retFieldCount);
 /* Get list of beds from custom track of given name that are
  * in current regions and that pass filters.  You can bedFree
  * this when done. */
@@ -835,9 +835,10 @@
 /* Return a bed list of all items in the given range in subtrack-merged table.
  * Cleanup result via lmCleanup(&lm) rather than bedFreeList.  */
 
 struct bed *dbGetFilteredBedsOnRegions(struct sqlConnection *conn,
-	char *table, struct region *regionList, struct lm *lm,
+	char *db, char *dbVarName, char *table, char *tableVarName,
+	struct region *regionList, struct lm *lm, 
 	int *retFieldCount);
 /* Get list of beds from database in region that pass filtering. */
 
 /* ----------- Page displayers -------------- */