-
Notifications
You must be signed in to change notification settings - Fork 44
/
igvwebConfig.js
36 lines (28 loc) · 1.07 KB
/
igvwebConfig.js
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
var igvwebConfig = {
genomes: "resources/genomes.json",
trackRegistryFile: "resources/tracks/trackRegistry.json",
// Supply a drobpox api key to enable the Dropbox file picker in the load menus. This is optional
//dropboxAPIKey: "...",
// Supply a Google client id to enable the Google file picker in the load menus. This is optional
//clientId: "...",
//apiKey: "...",
// Provide a URL shorterner function or object. This is optional. If not supplied
// sharable URLs will not be shortened. If using tinyURL supply an api token
// urlShortener: {
// provider: "tinyURL",
// api_token: "<your tinyurl token>"
// },
// urlShortener: function(longURL) {... return shortendURL}
enableCircularView: true,
restoreLastGenome: true,
igvConfig:
{
genome: "hg19",
locus: "all",
genomeList: "resources/genomes.json",
queryParametersSupported: true,
showChromosomeWidget: true,
showSVGButton: false,
tracks: []
}
}