a74afbfcfe01da0f925d8ff976cf5f2f13ce967d braney Sat Apr 6 16:23:21 2019 -0700 more lolly work diff --git src/hg/inc/trackDb.h src/hg/inc/trackDb.h index 972bc0e..4332b59 100644 --- src/hg/inc/trackDb.h +++ src/hg/inc/trackDb.h @@ -638,30 +638,31 @@ void tdbSetCartVisibility(struct trackDb *tdb, struct cart *cart, char *vis); // Set visibility in the cart. Handles all the complications necessary for subtracks. // More INLINES which depend on what the definition of "is" is INLINE boolean tdbIsBigBed(struct trackDb *tdb) // Local test to see if something is big bed. Handles hub tracks unlike hIsBigBed. { // TODO: replace with table lookup (same as bigBedFind ?) return startsWithWord("bigBed", tdb->type) || startsWithWord("bigGenePred", tdb->type) || startsWithWord("bigMaf", tdb->type) || startsWithWord("bigPsl", tdb->type) || startsWithWord("bigNarrowPeak", tdb->type) || startsWithWord("bigBarChart", tdb->type) || startsWithWord("bigInteract", tdb->type) || + startsWithWord("bigLolly", tdb->type) || startsWithWord("bigChain", tdb->type); } INLINE boolean tdbIsBigWig(struct trackDb *tdb) // Local test to see if something is big bed. Handles hub tracks unlike hIsBigBed. { return startsWithWord("bigWig", tdb->type) || startsWithWord("mathWig", tdb->type); } INLINE boolean tdbIsLongTabix(struct trackDb *tdb) // Return TRUE if tdb corresponds to a long tabix file. { return startsWithWord("longTabix", tdb->type); }