d807b60fd721c00051ac7e7cf5088eedba7170eb braney Thu Oct 22 13:28:01 2020 -0700 in response to code review diff --git src/hg/utils/tdbQuery/tdbQuery.c src/hg/utils/tdbQuery/tdbQuery.c index 8ec0307..83c2979 100644 --- src/hg/utils/tdbQuery/tdbQuery.c +++ src/hg/utils/tdbQuery/tdbQuery.c @@ -872,31 +872,31 @@ closestTdbAboveLevel(recordList, childFp, parentDepth); assert(closestParent != NULL); if (closestParent != parent) errAbort("%s comes between parent (%s) and child (%s) in %s\n" "Parent at line %d, child at line %d.", closestParent->key, parent->key, child->key, childFp->fileName, parentFp->startLineIx, childFp->startLineIx); } } } } static boolean isComplex(char *name) /* Check to see if this is one of the filter variables that have arbitrary initial strings. */ { -if (startsWith("yLabel.", name)) +if (startsWith("yAxisLabel.", name)) return TRUE; if (startsWith("filter.", name)) return TRUE; if (startsWith("filterValues", name)) return TRUE; if (startsWith("filterType.", name)) return TRUE; if (startsWith("filterLimits.", name)) return TRUE; if (startsWith("filterLabel.", name)) return TRUE; if (startsWith("filterByRange.", name)) return TRUE; if (startsWith("filterText.", name)) return TRUE;