GMOD / jbrowse

JBrowse 1, a full-featured genome browser built with JavaScript and HTML5. For JBrowse 2, see https://github.com/GMOD/jbrowse-components.
http://jbrowse.org
Other
463 stars 199 forks source link

Does JBrowse have parameters that control the order in which labels are displayed? #1545

Closed Trandamere closed 4 years ago

Trandamere commented 4 years ago

sort For example, I want "Genome Assembly of PH1" to be first.

cmdcolin commented 4 years ago

Adding these lines to your jbrowse.conf

[trackSelector]
sortHierarchical=false

Will disable the sorting by alphabetical order. Therefore categories and tracknames will appear relative to how they are ordered in the trackList.json

Trandamere commented 4 years ago

Thanks