7f5722b3712324de253ab8223d40ff1b10c10ee9 max Mon Jun 22 07:31:12 2020 -0700 adding support for the name omimGene2bb to the omimGene2 hgc handler. refs #18419 diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c index 600ac76..c6181ea 100644 --- src/hg/hgc/hgc.c +++ src/hg/hgc/hgc.c @@ -25776,31 +25776,31 @@ { doSwitchDbTss(tdb, item); } else if (sameWord(table, "omimLocation")) { doOmimLocation(tdb, item); } else if (sameWord(table, "omimAvSnp")) { doOmimAvSnp(tdb, item); } else if (sameWord(table, "omimGeneClass2")) { doOmimGene2(tdb, item); } -else if (sameWord(table, "omimGene2")) +else if (sameAltWords(table, handler, "omimGene2", "omimGene2bb", NULL)) { doOmimGene2(tdb, item); } else if (sameWord(table, "omimAv")) { doOmimAv(tdb, item); } else if (sameWord(table, "rgdGene")) { doRgdGene(tdb, item); } else if (sameWord(table, "rgdGene2")) { doRgdGene2(tdb, item); }