ced87a4c57bb9427ea08b813056f8959272148a7 kate Tue Jul 3 13:43:19 2018 -0700 Fix last updated time. refs #20546 diff --git src/hg/lib/hui.c src/hg/lib/hui.c index bd448af..b5cb803 100644 --- src/hg/lib/hui.c +++ src/hg/lib/hui.c @@ -8572,31 +8572,32 @@ if (ct) { conn = hAllocConn(CUSTOM_TRASH); tableName = ct->dbTableName; } } else if (startsWith("big", tdb->type)) { char *tableName = hTableForTrack(database, tdb->table); struct sqlConnection *conn = hAllocConnTrack(database, tdb); char *bbiFileName = bbiNameFromSettingOrTable(tdb, conn, tableName); hFreeConn(&conn); struct bbiFile *bbi = NULL; if (startsWith("bigBed", tdb->type) || sameString("bigBarChart", tdb->type) || sameString("bigMaf", tdb->type) || sameString("bigPsl", tdb->type) - || sameString("bigChain", tdb->type) || sameString("bigGenePred", tdb->type) ) + || sameString("bigChain", tdb->type) || sameString("bigGenePred", tdb->type) + || sameString("bigInteract", tdb->type)) bbi = bigBedFileOpen(bbiFileName); else if (startsWith("bigWig", tdb->type)) bbi = bigWigFileOpen(bbiFileName); time_t timep = 0; if (bbi) { timep = bbiUpdateTime(bbi); bbiFileClose(&bbi); } printBbiUpdateTime(&timep); } else { tableName = hTableForTrack(database, tdb->table); conn = hAllocConnTrack(database, tdb);