forked from MariaNattestad/SplitThreader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSplitThreader_tests.html
More file actions
41 lines (28 loc) · 852 Bytes
/
Copy pathSplitThreader_tests.html
File metadata and controls
41 lines (28 loc) · 852 Bytes
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
<!doctype html>
<html>
<head>
<title>SeqGraph</title>
<link rel="stylesheet" href="css/lib/qunit-1.23.1.css">
<!-- <link href="css/custom_styles.css" rel="stylesheet"></link> -->
</head>
<body>
<div id="cy"></div>
<div id="file"></div>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
</body>
<!-- JQuery -->
<!-- <script src='js/jquery-1.12.4.min.js'></script> -->
<!-- D3 -->
<script src='js/lib/d3.v3.min.js'></script>
<!-- Priority Queue -->
<script src='js/lib/priority-queue.min.js'></script>
<!-- SeqGraph -->
<!-- <script src='js/seqgraph.js'></script> -->
<script src='js/SplitThreader.js'></script>
<!-- Basic usage script -->
<!-- <script src='main.js'></script> -->
<!-- Unit testing -->
<script src="js/lib/qunit-1.23.1.js"></script>
<script src="js/SplitThreader_tests.js"></script>
</html>