2fff52ac48b4fe50d2b9803baa4727f6e3c379d1 galt Tue Jan 14 22:54:58 2025 -0800 Braney said the comments were superfluous. diff --git src/hg/hgc/gencodeClick.c src/hg/hgc/gencodeClick.c index cbdc71c..fb528ff 100644 --- src/hg/hgc/gencodeClick.c +++ src/hg/hgc/gencodeClick.c @@ -71,31 +71,31 @@ /* is this a GRC human assembly? */ { //bool result = FALSE; //if (startsWith("hg", database)) // result = TRUE; //else if (!startsWith("mm", database)) // warn("BUG: gencodeClick on wrong database: %s", database); //return result; if (startsWith("hg", database)) return TRUE; else if (startsWith("mm", database)) return FALSE; else errAbort("BUG: gencodeClick on wrong database: %s", database); -return FALSE; // make compiler happy. errAbort should never return. +return FALSE; } static bool haveGencodeTable(struct sqlConnection *conn, struct trackDb *tdb, char *tableBase) /* determine if a gencode table exists; it might be option or not in older releases */ { return sqlTableExists(conn, gencodeGetTableName(tdb, tableBase)); } static boolean isGrcH37Native(struct trackDb *tdb) /* Is this GENCODE GRCh37 native build, which requires a different Ensembl site. */ { // check for non-lifted GENCODE on GRCh37/hg19 if (sameString(database, "hg19")) return stringIn("lift37", gencodeGetVersion(tdb)) == NULL; else