https://github.com/cmdcolin/manytracks
A small JBrowse plugin to help in configuring lots of tracks!
https://github.com/cmdcolin/manytracks
Last synced: 2 months ago
JSON representation
A small JBrowse plugin to help in configuring lots of tracks!
- Host: GitHub
- URL: https://github.com/cmdcolin/manytracks
- Owner: cmdcolin
- License: isc
- Created: 2017-06-12T21:16:45.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-12-28T00:54:33.000Z (over 7 years ago)
- Last Synced: 2025-12-07T12:14:14.631Z (7 months ago)
- Language: JavaScript
- Size: 134 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- License: LICENSE
Awesome Lists containing this project
README
# manytracks
A small JBrowse plugin to initialize many tracks given an array of URLs to make long redundant track configs less redundant!
## Example configuation
[manytracks.config]
type=JBrowse/View/Track/Wiggle/XYPlot
storeClass=JBrowse/Store/SeqFeature/BigWig
urlTemplates+=ex1.bw
urlTemplates+=ex2.bw
[manytracks.config_band]
variance_band=true
type=JBrowse/View/Track/Wiggle/XYPlot
storeClass=JBrowse/Store/SeqFeature/BigWig
urlTemplates+=ex1.bw
urlTemplates+=ex2.bw
The plugin will initiate a track for each file in the array of files in `urlTemplates`. This generally works best with a long list of simple track types like BAM, VCF.gz, or BigWig
## Screenshot

Simple example of the manytracks configuration, with two manytracks config blocks (one with variance band added, one without)
## Install
Clone repo into plugins folder into the JBrowse plugins folder, then name folder ManyTracks. Finally add the plugin declaration to trackList.json or jbrowse_conf.json
"plugins": ["ManyTracks"]
See http://gmod.org/wiki/JBrowse_FAQ#How_do_I_install_a_plugin for more information