forked from igvteam/igv-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
igvwebConfig.js
34 lines (29 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
var igvwebConfig = {
genomes: "resources/genomes.json",
trackRegistryFile: "resources/tracks/trackRegistry.json",
// 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 .
urlShortener: {
provider: "tinyURL"
},
//restoreLastGenome: true,
igvConfig:
{
queryParametersSupported: true,
showChromosomeWidget: true,
genome: "hg19",
showSVGButton: false,
tracks: [
// TODO -- add default tracks here. See github.com/igvteam/igv.js/wiki for details
// {
// name: "CTCF - string url",
// type: "wig",
// format: "bigwig",
// url: "https://www.encodeproject.org/files/ENCFF563PAW/@@download/ENCFF563PAW.bigWig"
// }
]
}
}