-
Notifications
You must be signed in to change notification settings - Fork 1
/
index_cyto.html
60 lines (44 loc) · 2.42 KB
/
index_cyto.html
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
<!--
SPDX-License-Identifier: AGPL-3.0-or-later
Copyright (C) 2022-2023 Dyne.org foundation <foundation@dyne.org>.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!-- <link rel="stylesheet" type="text/css" href="css/jquery-ui.theme.css" /> -->
<link rel="stylesheet" type="text/css" href="css/cyto.css" />
<title>DPP | Cytoscape</title>
<!-- libs used by demo -->
<!-- cy libs -->
<script type="text/javascript" src="./node_modules/cytoscape/dist/cytoscape.umd.js"></script>
<script type="text/javascript" src="./node_modules/webcola/WebCola/cola.js"></script>
<!-- <script src="https://unpkg.com/webcola/WebCola/cola.min.js"></script> -->
<script type="text/javascript" src="./node_modules/cytoscape-cola/cytoscape-cola.js"></script>
<script type="text/javascript" src="./node_modules/dagre/dist/dagre.js"></script>
<script type="text/javascript" src="./node_modules/cytoscape-dagre/cytoscape-dagre.js"></script>
<script type="text/javascript" src="./node_modules/elkjs/lib/elk.bundled.js"></script>
<script type="text/javascript" src="./node_modules/cytoscape-elk/dist/cytoscape-elk.js"></script>
<script type="text/javascript" src="./node_modules/klayjs/klay.js"></script>
<script type="text/javascript" src="./node_modules/cytoscape-klay/cytoscape-klay.js"></script>
<script type="text/javascript" src="./node_modules/@popperjs/core/dist/umd/popper.js"></script>
<script type="text/javascript" src="./node_modules/tippy.js/dist/tippy-bundle.umd.js"></script>
<script type="text/javascript" src="./node_modules/cytoscape-popper/cytoscape-popper.js"></script>
<script type="text/javascript" src="./node_modules/cytoscape-svg/cytoscape-svg.js"></script>
<script type="module" src="./scripts/main.js"></script>
</head>
<body>
<div id="cyto">
</div>
</body>
</html>