747d414a3053db1454d223d0db7e74a4765e7c98 braney Tue Jan 24 17:00:18 2023 -0800 re-introducing chainSnakes into the browser diff --git src/hg/hgTracks/simpleTracks.c src/hg/hgTracks/simpleTracks.c index f5d9b2d..675c2ee 100644 --- src/hg/hgTracks/simpleTracks.c +++ src/hg/hgTracks/simpleTracks.c @@ -14237,36 +14237,34 @@ else if (sameWord(type, "logo")) { logoMethods(track, tdb, wordCount, words); } #endif /* GBROWSE */ else if (sameWord(type, "psl")) { pslMethods(track, tdb, wordCount, words); // FIXME: registerTrackHandler doesn't accept wildcards, so this might be the only // way to get this done in a general way. If this was in loaded with registerTrackHandler // pslMethods would need the tdb object, which we don't have for these callbacks if (startsWith("pubs", track->track)) pubsBlatPslMethods(track); } -#ifdef NOTNOW else if (sameWord(type, "snake")) { snakeMethods(track, tdb, wordCount, words); } -#endif else if (sameWord(type, "chain")) { chainMethods(track, tdb, wordCount, words); } else if (sameWord(type, "netAlign")) { netMethods(track); } else if (sameWord(type, "maf")) { mafMethods(track); } else if (sameWord(type, "bam")) { bamMethods(track);