-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdiego.html
58 lines (44 loc) · 2.35 KB
/
diego.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
<head xmlns:xlink="http://www.w3.org/1999/xlink">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<!-- bootstrap -->
<!-- <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> -->
<!-- DataTables -->
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.0/js/jquery.dataTables.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.0/css/jquery.dataTables.css">
<!-- custom css -->
<link rel="stylesheet" type="text/css" href="vcfMeteor/client/library/style.css">
<!-- preexistent scripts-->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<!-- <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> -->
<!-- <script src="http://www.broofa.com/Tools/Math.uuid.js" ></script> -->
<!-- myScripts -->
<script src="vcfMeteor/client/library/main.js"></script>
<script src="vcfMeteor/client/library/vcf.js"></script>
<script src="vcfMeteor/client/library/snpList.js"></script>
<script src="vcfMeteor/client/library/rdfize.js"></script>
<script src="vcfMeteor/client/library/mongoId.js"></script>
<script src="vcfMeteor/client/library/d3.min.js"></script>
<script src="vcfMeteor/client/library/Math.uuid.js"></script>
<!-- local forage -->
<script src="vcfMeteor/client/library/localforage.js"></script>
<!-- <script>localforage.getItem('something', myCallback);</script> -->
<script src="vcfMeteor/client/library/testing_new_parser.js"></script>
</head>
<body>
<div class="container" id="summary"></div>
<div class="container" id="diegoDiv"></div><br>
<input type="file" id="pickFile"><br><img id= "output">
<input class="button" type="button" id="tableBtn" value="Table with Genes (slow)">
<input class="button" type="button" id="fastTableBtn" value="Table without Genes (fast)">
<input class="button" type="button" id="barPlotBtn" value="Show Bar Plot">
<input class="button" type="button" id="ScaterPlotBtn" value="Show Scater Plot">
<input class="button" type="button" id="myRdfButton" value="Parse to RDF">
<table id ="myTable" class="display" ></table>
<svg class="chart"></svg>
<div class="container" id="rdf"></div>
<script>
main();
t_main();
</script>
</body>