0b24a835ce4160b634eea9c8f8e0fb29c910feb3
max
Tue Jan 6 13:05:08 2026 -0800
do not show table browser link for super tracks, email from Mark, no redmine
diff --git src/hg/lib/hui.c src/hg/lib/hui.c
index f7c4799f675..3da44ec61f5 100644
--- src/hg/lib/hui.c
+++ src/hg/lib/hui.c
@@ -584,31 +584,31 @@
printf("Metadata:
%s\n", metadataAsHtmlTable(db, tdb, FALSE, FALSE));
boolean schemaLink = trackDataAccessible(db, tdb);
boolean downloadLink = (trackDbSetting(tdb, "wgEncode") != NULL && !tdbIsSuperTrack(tdb));
int links = 0;
if (schemaLink)
links++;
if (downloadLink)
links++;
if (links > 0)
cgiDown(0.7);
if (links > 1)
printf("
| View table: "); -if (schemaLink && differentString("longTabix", tdb->type) && !isCustomComposite(tdb)) +if (schemaLink && differentString("longTabix", tdb->type) && !isCustomComposite(tdb) && !tdbIsSuper(tdb)) // FIXME: hgTables.showSchmaLongTabix is a currently a dummy routine, so let's not got here // until it's implemented { makeSchemaLink(db,tdb,(links > 1 ? "Data format":"Data schema/format description and download")); if (downloadLink) printf(", "); } makeFileDownloads(tdb, db); if (downloadLink) { // special case exception (hg18:NHGRI BiPs are in 7 different dbs but only hg18 has downloads): char *targetDb = trackDbSetting(tdb, "compareGenomeLinks"); if (targetDb != NULL) |