-
Notifications
You must be signed in to change notification settings - Fork 2
/
visBEEP.html
65 lines (55 loc) · 2.21 KB
/
visBEEP.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
61
62
63
64
65
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- This opens the visualisation software used to view BEEP results -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="BioSS,The Roslin Institute,BEEP,Bayesian Estimation of Epidemic Parameters using Model-Based Proposals">
<meta name="description" content="BEEP (Bayesian Estimation of Epidemic Parameters using Model-Based Proposals) is a general-purpose software tool for simulating and performing inference on epidemiological compartmental models.">
<meta name="author" content="C M Pooley">
<title>BEEP</title>
<style>
.container {
height: 400px;
position: relative;
border: 0px;
}
.center {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
text-align: center;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
</style>
<script src="vis_files/const.js"></script>
<script src="vis_files/var.js"></script>
<script src="vis_files/init.js"></script>
<script src="vis_files/button.js"></script>
<script src="vis_files/canbutton.js"></script>
<script src="vis_files/buttonplot.js"></script>
<script src="vis_files/mousemove.js"></script>
<script src="vis_files/mouseclick.js"></script>
<script src="vis_files/generate_plots.js"></script>
<script src="vis_files/BEEP_output.js"></script>
<script src="vis_files/export_graphs.js"></script>
</head>
<body id="bod" onresize="buttoninit();" onload="init()" style="margin:0px; padding:0px;">
<div class="container" id ="container">
<div class="center" style="font-size:20px" >
<img style="width:400px" src="vis_files/logo.png"><br/>
<div id="loading">Loading...</div>
</div>
</div>
<div id="main" style="visibility:hidden; background:#ddddff; height:0px; margin:0px; padding:0px;">
<canvas id="myCanvas" style="background:#ffffff; margin:0px; border:0px; padding:0px; margin-top:5px">
</canvas>
</div>
<!-- Turn this on to create graphs of of state space
<div id="createPNGButton">
<button onclick="putImage()">Save as Image</button>
</div>
-->
</body>
</html>