916b1db3c50ed46600f8c13acb742cb9dd205f6d braney Fri May 27 17:11:10 2016 -0700 support connections to other chroms in longRange display. Also, longTabix in trackHubs diff --git src/hg/lib/trackHub.c src/hg/lib/trackHub.c index 90cda08..f1533aa 100644 --- src/hg/lib/trackHub.c +++ src/hg/lib/trackHub.c @@ -763,30 +763,31 @@ tdb->track, hub->url, genome->name); } } else { /* Check type field. */ char *type = requiredSetting(hub, genome, tdb, "type"); if (!(startsWithWord("bigWig", type) || startsWithWord("bigBed", type) || #ifdef USE_HAL startsWithWord("halSnake", type) || #endif startsWithWord("vcfTabix", type) || startsWithWord("bigPsl", type) || startsWithWord("bigMaf", type) || + startsWithWord("longTabix", type) || startsWithWord("bigGenePred", type) || startsWithWord("bigChain", type) || startsWithWord("bam", type))) { errAbort("Unsupported type '%s' in hub %s genome %s track %s", type, hub->url, genome->name, tdb->track); } requiredSetting(hub, genome, tdb, "bigDataUrl"); } } static void markContainers( struct trackHub *hub, struct trackHubGenome *genome, struct trackDb *tdbList) /* Mark containers that are parents, or have them. */