-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (62 loc) · 1.97 KB
/
index.html
File metadata and controls
69 lines (62 loc) · 1.97 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<script type="text/javascript" src="jquery-3.2.1.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script type="text/javascript" src="d3.js"></script>
<link rel="stylesheet" href="index.css">
<title>KRAS to ELK pathway</title>
</head>
<body>
<script src="index.js"></script>
<div id="sidebar">
<div id="atlas">
<h2>atlas</h2>
<table>
<tr>
<th>modification</th>
<th>value options</th>
</tr>
<tr>
<td>justify</td>
<td>0: top-weighted<br>
1: center-weighted</td>
</tr>
<tr>
<td>link_weight</td>
<td>1: default (1px)<br>
!1: use weights specified in links file</td>
</tr>
<tr>
<td>link_type</td>
<td>0: straight line<br>
1: bezier curve (default)<br>
2: bundled bezier curve</td>
</tr>
<tr>
<td>link_color</td>
<td>any color hex code</td>
</tr>
<tr>
<td>link_gradient</td>
<td>0: solid color<br>
!0: gradient</td>
</tr>
<tr>
<td>node_bg_color</td>
<td>0: solid color<br>
!0: gradient</td>
</tr>
<tr>
<td>node_r</td>
<td>0-50: dictates radius of node corners</td>
</tr>
</table>
</div>
<div id="info">
</div>
</div>
</body>
</html>