325f711f30c884459738f065f3415ce2914ec828 braney Wed Aug 13 16:18:51 2025 -0700 get hgConvert and hgLiftOver to use genark assemblies that are not in the UCSC taxId list diff --git src/hg/lib/web.c src/hg/lib/web.c index 17246cfd0ff..9f7d00ed74e 100644 --- src/hg/lib/web.c +++ src/hg/lib/web.c @@ -693,31 +693,31 @@ * If NULL, no default selection. * param onChangeText - Optional (can be NULL) text to pass in * any onChange javascript. */ { char *orgList[1024]; int numGenomes = 0; struct dbDb *cur = NULL; struct hash *hash = hashNew(10); // 2^^10 entries = 1024 char *selGenome = hGenome(db); char *values [4096]; char *cgiName; for (cur = dbList; cur != NULL; cur = cur->next) { if (!hashFindVal(hash, cur->genome) && - (!doCheck || hDbExists(cur->name))) + (!doCheck || hDbExists(cur->name) || startsWith("GC", cur->name))) { hashAdd(hash, cur->genome, cur); orgList[numGenomes] = trackHubSkipHubName(cur->genome); values[numGenomes] = cur->genome; numGenomes++; if (numGenomes >= ArraySize(orgList)) internalErr(); } } cgiName = (customOrgCgiName != NULL) ? customOrgCgiName : orgCgiName; cgiMakeDropListFull(cgiName, orgList, values, numGenomes, selGenome, event, javascript); hashFree(&hash); }