a2c9728424a8d22c1ae93ae37c4a5f1fd4095e62 braney Thu Apr 24 11:45:15 2025 -0700 add quickLift support for pubs* tracks diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c index de021c5b7fe..dab9628856a 100644 --- src/hg/hgc/hgc.c +++ src/hg/hgc/hgc.c @@ -27842,31 +27842,31 @@ { doKiddEichlerDisc(tdb, item); } else if (startsWith("hgdpGeo", table)) { doHgdpGeo(tdb, item); } else if (startsWith("gwasCatalog", table)) { doGwasCatalog(tdb, item); } else if (sameString("par", table)) { doParDetails(tdb, item); } -else if (startsWith("pubs", table)) +else if (startsWith("pubs", trackHubSkipHubName(table))) { doPubsDetails(tdb, item); } else if (tdb != NULL && startsWith("bedDetail", tdb->type)) { doBedDetail(tdb, NULL, item); } else if (startsWith("numtS", table)) { doNumtS(tdb, item); } else if (sameString("cosmic", table)) { doCosmic(tdb, item); }