This repository has been archived by the owner on Jun 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphovea.js
54 lines (47 loc) · 1.76 KB
/
phovea.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
51
52
53
/* *****************************************************************************
* Caleydo - Visualization for Molecular Biology - http://caleydo.org
* Copyright (c) The Caleydo Team. All rights reserved.
* Licensed under the new BSD license, available at http://caleydo.org/license
**************************************************************************** */
//register all extensions in the registry following the given pattern
module.exports = function(registry) {
//registry.push('extension-type', 'extension-id', function() { return System.import('./src/extension_impl'); }, {});
// generator-phovea:begin
registry.push('datatype', 'caleydo-genome-data-link', function() { return System.import('./src/caleydo-genome-data-link'); }, {});
registry.push('vis', 'vials-isoforms', function() { return System.import('./src/vials-isoforms'); }, {
'name': 'Alternative Splicing - IsoForms',
'size': [
840,
300
],
'filter': 'caleydo-genome-data-link'
});
registry.push('vis', 'vials-junctions', function() { return System.import('./src/vials-junctions-v2'); }, {
'name': 'Alternative Splicing - Junctions',
'size': [
840,
2000
],
'filter': 'caleydo-genome-data-link'
});
registry.push('vis', 'vials-reads', function() { return System.import('./src/vials-read-v2'); }, {
'name': 'Alternative Splicing - Read Abundance',
'size': [
840,
2000
],
'filter': 'caleydo-genome-data-link'
});
registry.push('vis', 'vials-axis', function() { return System.import('./src/vials-genome-axis'); }, {
'name': 'Alternative Splicing - Axis',
'size': [
840,
2000
],
'filter': 'caleydo-genome-data-link'
});
registry.push('app', 'vials', function() { return System.import('./src/'); }, {
'name': 'Vials'
});
// generator-phovea:end
};