-
Notifications
You must be signed in to change notification settings - Fork 0
/
site-settings.js
50 lines (48 loc) · 1.6 KB
/
site-settings.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// This uses the UMD server for login and user management
epiviz.Config.SETTINGS.dataServerLocation = 'http://metaviz.cbcb.umd.edu/data/';
// This sets up the UMD data server as the only data provider
epiviz.Config.SETTINGS.dataProviders = [
[
// fully qualified class name for the class
'epiviz.data.EpivizApiDataProvider',
// the name of the datasource (matching the datasource in the UI add measurements dialog)
'msd16s',
// where the api is located, relative to dataServerLocation (see above)
'http://metaviz.cbcb.umd.edu/api',
// retrieve only this measurement annotation:
[],
// this is the initial depth of icicles:
3,
// aggregate at these levels in the tree:
{2: epiviz.ui.charts.tree.NodeSelectionType.NODE}
]
,
[
'epiviz.data.EpivizApiDataProvider',
'vogtmannE',
'http://metaviz.cbcb.umd.edu/api',
[],
3,
{3: epiviz.ui.charts.tree.NodeSelectionType.NODE}
],
// [
// 'epiviz.data.EpivizApiDataProvider',
// 'hmp',
// 'http://metaviz.cbcb.umd.edu/api',
// [],
// 3,
// {3: epiviz.ui.charts.tree.NodeSelectionType.NODE}
// ],
// [
// 'epiviz.data.EpivizApiDataProvider',
// 'ibd',
// 'http://metaviz.cbcb.umd.edu/api',
// [],
// 3,
// {3: epiviz.ui.charts.tree.NodeSelectionType.NODE}
// ]
];
// This sets up the UMD workspace server
epiviz.Config.SETTINGS.workspacesDataProvider = sprintf('epiviz.data.WebServerDataProvider,%s,%s',
'workspaces_provider',
'http://metaviz.cbcb.umd.edu/data/main.php');