-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtumorBoard.html
More file actions
26 lines (26 loc) · 1.02 KB
/
tumorBoard.html
File metadata and controls
26 lines (26 loc) · 1.02 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
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="https://jmat.googlecode.com/git/jmat.js"></script>
<script src="https://ibl.github.io/cbio/cbio.js"></script>
<!-- <script src="http://localhost:8888/jmat/jmat.js"></script> !-->
<script src="tumorBoard.js"></script>
</head>
<body>
<div class="container" id="tumorBoard">
<h3>Tumor Board sandbox</h3>
<p>
Software components to help with the analysis of genomics results obtained from tumor samples. These components are entirely executed in the web browser, that is, without any data leaving the machine assessing this page.
</p>
<p>
For more information see <a href="https://github.com/ibl/vcf/blob/gh-pages/tumorBoard.js" target=_blank>source code</a>.
</p>
<hr>
</div>
<script>
tumorBoard();
</script>
</body>
</html>