b26ab6189278b9fa735672d1aac2b290392cc305 chmalee Fri Jun 14 16:27:51 2024 -0700 Remove mistaken dependency on gbMeta from checkHgFindSpec, refs Novartis email diff --git src/hg/checkHgFindSpec/checkHgFindSpec.c src/hg/checkHgFindSpec/checkHgFindSpec.c index c86c15c..0f52e46 100644 --- src/hg/checkHgFindSpec/checkHgFindSpec.c +++ src/hg/checkHgFindSpec/checkHgFindSpec.c @@ -361,31 +361,31 @@ errAbort("Sorry, -makeExamples not implemented yet."); return(gotError); } int checkHgFindSpec(char *db, char *termToSearch, boolean showSearches, boolean checkTermRegex, char *exampleFor, boolean checkIndexes, boolean makeExamples) /* Perform searches/checks as specified, summarize errors, * return nonzero if there are errors. */ { boolean gotError = FALSE; database = db; -initGenbankTableNames("gbMeta"); +initGenbankTableNames(db); if (isNotEmpty(termToSearch)) gotError |= reportSearch(termToSearch); if (showSearches) gotError |= reportSearch(NULL); if (checkTermRegex) gotError |= doCheckTermRegex(); if (isNotEmpty(exampleFor)) { termToSearch = getExampleFor(exampleFor); gotError |= reportSearch(termToSearch); } if (checkIndexes) gotError |= doCheckIndexes(); if (makeExamples)