d1f536096d7ac957747ccc64a3b0eaa27981d7ab braney Thu Apr 21 12:55:59 2022 -0700 fix in response to code review to restore original functionality diff --git src/hg/lib/featureBits.c src/hg/lib/featureBits.c index 4f813f9..b34f53d 100644 --- src/hg/lib/featureBits.c +++ src/hg/lib/featureBits.c @@ -126,31 +126,31 @@ static boolean utr5Qualifier(char *qualifier, char *extra, int *retSize) /* Return TRUE if it's a utr5 qualifier. */ { return fetchQualifiers("utr5", qualifier, extra, retSize); } boolean fbUnderstandTrack(char *db, struct trackDb *tdb) /* Return TRUE if can turn track into a set of ranges or bits. */ { if ((tdb != NULL) && startsWith("big", tdb->type) && !startsWith("bigWig", tdb->type)) return TRUE; -struct hTableInfo *hti = hFindTableInfo(db, NULL, tdb->track); +struct hTableInfo *hti = hFindTableInfo(db, NULL, tdb->table); if (hti == NULL) return FALSE; else return hti->isPos; } static void fbAddFeature(char *db, struct featureBits **pList, char *name, char *chrom, int start, int size, char strand, int winStart, int winEnd) /* Add new feature to head of list. Name can be NULL. */ { struct featureBits *fb; int s, e; char nameBuf[512];