89dba208305664efd8142a38805d84c858473d16 chmalee Thu Apr 20 13:09:56 2023 -0700 Allow dgvMerged track to be a bigBed and do the standard bigBed details page, refs #30873 diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c index d7136b4..e04d90c 100644 --- src/hg/hgc/hgc.c +++ src/hg/hgc/hgc.c @@ -27020,31 +27020,31 @@ { doCnpSharp2(tdb, item); } else if (sameWord(table, "delHinds2")) { doDelHinds2(tdb, item); } else if (sameWord(table, "delConrad2")) { doDelConrad2(tdb, item); } else if (sameWord(table, "dgv") || sameWord(table, "dgvBeta")) { doDgv(tdb, item); } -else if (sameWord(table, "dgvMerged") || sameWord(table, "dgvSupporting")) +else if ((sameWord(table, "dgvMerged") || sameWord(table, "dgvSupporting")) && (tdb && !startsWith("bigBed", tdb->type))) { doDgvPlus(tdb, item); } else if (sameWord(table, "affy120K")) { doAffy120K(tdb, item); } else if (sameWord(table, "affy10K")) { doAffy10K(tdb, item); } else if (sameWord(table, "uniGene_2") || sameWord(table, "uniGene")) { doSageDataDisp(table, item, tdb); }