ecfd33824b0553d60a898c114fe1e6e3f8326ec1 braney Wed Apr 15 14:47:32 2020 -0700 tweak Jacob's rna structure code to be used on wuhCor1 diff --git src/hg/hgTracks/simpleTracks.c src/hg/hgTracks/simpleTracks.c index b6de68e..bcbbf7d 100644 --- src/hg/hgTracks/simpleTracks.c +++ src/hg/hgTracks/simpleTracks.c @@ -14227,30 +14227,32 @@ 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); +else if (startsWith("rnaStruct", track->track)) + rnaSecStrMethods(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) { if (!subtrack->loadItems) // This could happen if track type has no handler (eg, for new types or mnissing a type s) errAbort("Error: No loadItems() handler for subtrack (%s) of composite track (%s) (was a type specified for this track?)\n", subtrack->track, track->track); if (isSubtrackVisible(subtrack) && ( limitedVisFromComposite(subtrack) != tvHide)) {