a80a8de2fc8f3573cd184b2a4032afff1f959e16
kate
  Wed Jan 17 16:19:15 2018 -0800
First cut of interact track type.  Same display as longTabix, but with new schema to support phase 2 features. refs #17512

diff --git src/hg/hgTracks/simpleTracks.c src/hg/hgTracks/simpleTracks.c
index 399cc94..84cb3e2 100644
--- src/hg/hgTracks/simpleTracks.c
+++ src/hg/hgTracks/simpleTracks.c
@@ -14016,30 +14016,34 @@
     {
     remoteMethods(track);
     }
 else if (sameWord(type, "bamWig"))
     {
     bamWigMethods(track, tdb, wordCount, words);
     }
 else if (sameWord(type, "gvf"))
     {
     gvfMethods(track);
     }
 else if (sameWord(type, "barChart"))
     {
     barChartMethods(track);
     }
+else if (sameWord(type, "interact"))
+    {
+    interactMethods(track);
+    }
 /* add handlers for wildcard */
 if (startsWith("peptideAtlas", track->track))
     peptideAtlasMethods(track);
 else if (startsWith("gtexGene", track->track))
     gtexGeneMethods(track);
 #endif /* GBROWSE */
 }
 
 static void compositeLoad(struct track *track)
 /* Load all subtracks */
 {
 struct track *subtrack;
 long thisTime = 0, lastTime = 0;
 for (subtrack = track->subtracks; subtrack != NULL; subtrack = subtrack->next)
     {