-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
80 lines (74 loc) · 3.24 KB
/
index.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Comutation plot</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.1.1/d3.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="jscomut.css">
<script src="jscomututils.js"></script>
<script src="jscomut.js"></script>
<script src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
</head>
<body>
<div class="main-container">
<header id="header">
<div class="container">
<div class="row">
<div class="col-xs-1">
<img src="jscomut-icon.png" alt="jscomut-icon" id="logo">
</div>
<div class="col-xs-11">
<h1>jsComut
<small class="text-muted">Javascript library for interactive co-mutation plots</small>
</h1>
</div>
</div>
</div>
<p style="padding:10px 0px">This is a demo page for the jsComut which provides preload genomic data for users to checkout the features of this widget. Alternatively, users can upload their own data for visual analysis. </p>
</header>
<div id="widget"></div>
<div id="test-buttons"></div>
<section class="footer">
<footer>
<span class="footer-section-title">
Authors:
</span>
<span class="footer-section-text">
<br />
Thomas Pearce, MD, PhD
<br />
Somak Roy, MD
</span>
<br />
<span class="footer-section-title">
Source code:
</span>
<span class="footer-section-text">
Visit our github project page  
<a href="https://github.com/pearcetm/jscomut" target="_blank">
<i class="fab fa-2x fa-github-square"></i>
</a>
</span>
<br /><br />
<span class="footer-section-title">
Copyright:
</span>
<span class="footer-section-text">
jsComut is licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License v2.0</a>.
</span>
<br /><br />
<span class="footer-section-title">
Disclaimer:
</span>
<span class="disclaimer-text">
This webpage for jsComut library is for demonstration purpose only. The genomic data provided in this demonstration page or personal research data uploaded to this webpage for visualization does not constitute medical advice and should not be be treated as such. Data containing protected health information (PHI) should not be loaded on this demo page. No information is uploaded to or stored on the servers, however the authors are not responsbile for any breach of identifiable medical information if end user chooses to load data containing PHI.
</span>
</footer>
</section>
</div>
<script src="jscomutdemo.js"></script>
</body>