-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjbrowse_config.json
72 lines (72 loc) · 1.74 KB
/
jbrowse_config.json
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
{
"configuration": {
"theme": {
"palette": {
"primary": {
"main": "#24264a"
},
"secondary": {
"main": "#6f8fa2"
},
"tertiary": {
"main": "#1e4b34"
},
"quaternary": {
"main": "#6b4e2b"
}
}
},
"ApolloPlugin": {
"ontologies": [
{
"name": "Gene Ontology",
"version": "full",
"source": {
"uri": "https://release.geneontology.org/2023-06-11/ontology/go.json",
"locationType": "UriLocation"
}
},
{
"name": "Sequence Ontology",
"version": "3.1",
"source": {
"uri": "test_data/so-v3.1.json",
"locationType": "UriLocation"
}
}
]
}
},
"plugins": [
{
"name": "Apollo",
"url": "http://localhost:9000/dist/jbrowse-plugin-apollo.umd.development.js"
}
],
"internetAccounts": [
{
"type": "ApolloInternetAccount",
"internetAccountId": "apolloInternetAccount",
"name": "Demo Server",
"description": "A server hosting a small fictional organism to demonstrate Apollo capabilities",
"domains": ["localhost:3999"],
"baseURL": "http://localhost:3999",
"google": {
"authEndpoint": "http://localhost:3999/auth/google",
"clientId": "1054515969695-3hpfg1gd0ld3sgj135kfgikolu86vv30.apps.googleusercontent.com"
},
"microsoft": {
"authEndpoint": "http://localhost:3999/auth/microsoft",
"clientId": "fabdd045-163c-4712-9d40-dbbb043b3090"
}
}
],
"defaultSession": {
"name": "Apollo Demo",
"views": [
{
"type": "LinearGenomeView"
}
]
}
}