forked from GMOD/jbrowse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jbrowse.conf
93 lines (75 loc) · 2.83 KB
/
jbrowse.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#### JBrowse main configuration file
## uncomment the section below to customize this browser's title and description
# [aboutThisBrowser]
# title = <i>Oryza sativa</i>
# description = Browser for O. sativa transcripts and RNA-seq data,
# produced by the Smith laboratory at Example State University.
## uncomment and edit the example below to configure a faceted track
## selector
# [trackSelector]
# type = Faceted
# displayColumns =
# + label
# + key
# + organism
# + technique
## optionally turn off sorting for the hierarchical track selector
# sortHierarchical = false
## set collapsed categories for the hierarchical track selector, no spaces around slash separator
# collapsedCategories = Reference sequence,Quantitative/XY Plot
## optionally sort the faceted track selector by column (use the names from displayColumns)
# initialSortColumn=label
## optionally give different names to some of the data facets
## displayed in the track selector
# [trackSelector.renameFacets]
# submission = Submission ID
# developmental-stage = Conditions
# cell-line = Cell Line
# key = Dataset
# label = Track
## configure where to get metadata about tracks. always indexes the
## `metadata` part of each track config, but this can be used to load
## additional metadata from CSV or JSON urls
# [trackMetadata]
# sources = data/trackMetadata.csv
[GENERAL]
## add a document.domain to set the same-origin policy
# documentDomain=foobar.com
## use classic jbrowse menu with file instead of track and genome
#classicMenu = true
## hide open genome option
#hideGenomeOptions = true
## enable or disable high resolution rendering for canvas features
## default: 'disabled' since this is a beta feature
## use 'auto' to auto-detect settings on the users browser
## use a number to specify a custom backing store ratio on the users browser
# highResolutionMode=disabled
## uncomment to change the default sort order of the reference
## sequence dropdown
# refSeqOrder = length ascending
## to set a default data directory other than 'data', uncomment and
## edit the line below
# dataRoot = data
## optionally add more include statements to load and merge in more
## configuration files
include = {dataRoot}/trackList.json
include += {dataRoot}/tracks.conf
# include += ../url/of/my/other/config.json
# include += another_config.conf
## uncomment and edit the example below to enable one or more
## JBrowse plugins
# [ plugins.MyPlugin ]
# location = plugins/MyPlugin
# [ plugins.AnotherPlugin ]
# location = ../plugin/dir/someplace/else
## edit the datasets list below to add datasets to the jbrowse dataset
## selector
# [datasets.volvox]
# url = ?data=sample_data/json/volvox
# name = Volvox Example
# [datasets.modencode]
# url = ?data=sample_data/json/modencode
# name = MODEncode Example
# [datasets.yeast]
# url = ?data=sample_data/json/yeast
# name = Yeast Example