7412238abe94bb147ccb3570d4766d8bc063dbfe
galt
Mon Nov 24 13:05:48 2025 -0800
debug cleanup
diff --git src/hg/hgTables/mainPage.c src/hg/hgTables/mainPage.c
index 4a14c0706dd..914c242f536 100644
--- src/hg/hgTables/mainPage.c
+++ src/hg/hgTables/mainPage.c
@@ -718,31 +718,30 @@
selGroup = showGroupField(hgtaGroup, "change", onChangeGroupOrTrack(), conn, hAllowAllTables());
nbSpaces(3);
curTrack = showTrackField(selGroup, hgtaTrack, "change", onChangeGroupOrTrack(), FALSE);
nbSpaces(3);
hPrintf("\n");
}
/* Print table line. */
{
hPrintf("
");
curTable = showTableField(curTrack, hgtaTable, TRUE);
if (isHubTrack(curTable) || hashFindVal(fullTableToTdbHash, curTable) != NULL /* In same database */
|| sameString(curTable, "knownCanonical") // not in the trackList but works.
)
{
- verbose(1,"showMainControlTable DEBUG GALT calling getHti\n");
hti = getHti(database, curTable, conn);
isPositional = htiIsPositional(hti);
}
isLongTabix = isLongTabixTable( curTable);
isBam = isBamTable(curTable);
isHic = isHicTable(curTable);
isVcf = isVcfTable(curTable, NULL);
isWig = isWiggle(database, curTable);
if (isBigWigTable(curTable))
{
isPositional = TRUE;
isWig = TRUE;
}
isHalSnake = isHalTable( curTable);
isMaf = isMafTable(database, curTrack, curTable);
|