13b584581e6d7b1860e0cab97adc3594b1899308 braney Mon Aug 7 12:05:10 2023 -0700 add instaPort to bigBed support diff --git src/hg/lib/trackDbCustom.c src/hg/lib/trackDbCustom.c index 43fab40..0da9770 100644 --- src/hg/lib/trackDbCustom.c +++ src/hg/lib/trackDbCustom.c @@ -1575,30 +1575,31 @@ char *metadataInTdb = trackDbSetting(tdb, "metadata"); if (metadataInTdb) return convertNameValueString(metadataInTdb); return NULL; } boolean trackSettingIsFile(char *setting) /* Returns TRUE if setting found in trackDb stanza is a file setting that * would benefit from directory $D substitution among other things - looks for * settings that ends in "Url" and a few others. */ { return endsWith(setting, "Url") || sameString(setting, "bigDataIndex") || + sameString(setting, "instaPort") || sameString(setting, "frames") || sameString(setting, "summary") || sameString(setting, "searchTrix"); } char *labelAsFilteredNumber(char *label, unsigned numOut) /* add text to label to indicate filter is active */ { char buffer[2048]; safef(buffer, sizeof buffer, " (%d items filtered out)", numOut); return catTwoStrings(label, buffer); } char *labelAsFiltered(char *label) /* add text to label to indicate filter is active */