e5d963606c378c0f08cb946c3a9393847dd6ce22 kate Wed Oct 7 15:23:41 2020 -0700 Add bigBed to GeneReviews to support mouseOver with diseases. refs #19841 diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c index b3a69a4..b03efe6 100644 --- src/hg/hgc/hgc.c +++ src/hg/hgc/hgc.c @@ -26741,31 +26741,31 @@ { 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); } -else if (sameString("geneReviews", table)) +else if (startsWith("geneReviews", table)) { doGeneReviews(tdb, item); } else if (startsWith("qPcrPrimers", table)) { doQPCRPrimers(tdb, item); } else if (sameString("lrg", table)) { doLrg(tdb, item); } else if (sameString("lrgTranscriptAli", table)) { doLrgTranscriptPsl(tdb, item); }