e2d7638b2848fe00bbf9b66bca395ec68a9ee9e6 braney Thu Oct 15 16:22:06 2015 -0700 first cut at bigMaf support #15935 diff --git src/hg/hgTracks/simpleTracks.c src/hg/hgTracks/simpleTracks.c index 9f25c28..61765c7 100644 --- src/hg/hgTracks/simpleTracks.c +++ src/hg/hgTracks/simpleTracks.c @@ -12674,30 +12674,40 @@ /* else if (sameWord(type, "bedLogR")) { wordCount++; words[1] = "9"; complexBedMethods(track, tdb, FALSE, wordCount, words); //track->bedSize = 10; } */ else if (sameWord(type, "bigBed")) { bigBedMethods(track, tdb, wordCount, words); if (trackShouldUseAjaxRetrieval(track)) track->loadItems = dontLoadItems; } +else if (sameWord(type, "bigMaf")) + { + tdb->canPack = TRUE; + wordCount++; + words[1] = "3"; + wigMafMethods(track, tdb, wordCount, words); + track->isBigBed = TRUE; + if (trackShouldUseAjaxRetrieval(track)) + track->loadItems = dontLoadItems; + } else if (sameWord(type, "bigPsl")) { tdb->canPack = TRUE; wordCount++; words[1] = "12"; bigBedMethods(track, tdb, wordCount, words); if (trackShouldUseAjaxRetrieval(track)) track->loadItems = dontLoadItems; } else if (sameWord(type, "bigGenePred")) { tdb->canPack = TRUE; wordCount++; words[1] = "12"; bigBedMethods(track, tdb, wordCount, words);