f863c012ea39c498eaf4cff84f85f92fef210c5f jcasper Mon May 13 00:51:57 2019 -0700 Initial commit of Hi-C display support via .hic files, refs #18842 diff --git src/hg/hgTracks/simpleTracks.c src/hg/hgTracks/simpleTracks.c index 9fffeef..d64662e 100644 --- src/hg/hgTracks/simpleTracks.c +++ src/hg/hgTracks/simpleTracks.c @@ -14099,30 +14099,34 @@ } else if (sameWord(type, "netAlign")) { netMethods(track); } else if (sameWord(type, "maf")) { mafMethods(track); } else if (sameWord(type, "bam")) { bamMethods(track); if (trackShouldUseAjaxRetrieval(track)) track->loadItems = dontLoadItems; } +else if (sameWord(type, "hic")) + { + hicMethods(track); + } #ifdef USE_HAL else if (sameWord(type, "pslSnake")) { halSnakeMethods(track, tdb, wordCount, words); if (trackShouldUseAjaxRetrieval(track)) track->loadItems = dontLoadItems; } else if (sameWord(type, "halSnake")) { halSnakeMethods(track, tdb, wordCount, words); if (trackShouldUseAjaxRetrieval(track)) track->loadItems = dontLoadItems; } #endif else if (sameWord(type, "vcfTabix"))