-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·111 lines (89 loc) · 4.34 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<head>
<title>TaxonGram : Metagenomics Visualization</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
<!-- using local d3 lib charting is not good -->
<!--<script src="js/d3.v3.min.js"></script>-->
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.10/d3.min.js"></script>
<script src="js/typeahead.bundle.js"></script>
<script src="js/intro.min.js"></script>
<script src="js/sunburstD3.js"></script>
<script src="js/treeViewD3.js"></script>
<script src="js/app.js"></script>
<script src="js/guide.js"></script>
<!-- Using bootstrap and font awesome and custom css -->
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/introjs.min.css">
<!--<link rel="stylesheet" type="text/css" href="css/introjs-nazanin.css">-->
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<!-- header -->
<header class="navbar navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">TaxonGram</a>
</div>
</div>
<!-- navbar -->
<nav class="nav navbar-collapse" role="navigation">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html"><i class="fa fa-home"></i> Home</a></li>
<li><a href=""><i class="fa fa-question-circle"></i> About</a></li>
<li><a href="https://github.com/tomarashish/taxonGram"> <i class="fa fa-github"></i> Developer Guide</a></li>
</ul>
</nav>
<!-- end of nav-->
</header>
<!-- end of header-->
<!-- footer -->
<footer class="footer">
<div class="container">
<p>Developed By :
<span><a href="http://big4-project.eu/" target="_blank">Big4 Project</a></span>
<span style="float:right"> Project Funded By: <b>European Union </b><img id="footer-logo" height="30" width="40" src="data/images/logoeu.gif"/></span>
</p>
</div>
</footer>
<!-- Showing visualization -->
<div class="container-fluid">
<div class="row row-no-padding" id="samplerow">
<div class="col-md-12">
<div class="card card-block">
<button type="btn btn-raised" class="btn btn-default btn-raised btn-responsive"><b>Tree View</b></button>
<!--input id="the-basics" class="typeahead" type="text" placeholder="Node Name"-->
<button id="saveTree" type="btn btn-raised" class="btn btn-default btn-raised btn-responsive"><b>Save <span class="icon-download icon-medium"></span></b></button>
<div id="treeView"> </div>
</div>
</div>
<div class="col-md-12" style="position: fixed">
<div class="card card-block">
<button id="reset" type="btn btn-raised" class="btn btn-default btn-raised btn-responsive">reset <span class="icon-refresh icon-medium"></span></button>
<button type="btn btn-raised" class="btn btn-default btn-raised btn-responsive"><b>Lineage</b></button>
<div id="sequence"></div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<!-- Display charts -->
<div class="card card-block">
<button type="btn btn-raised" id="saveChart" class="btn btn-default btn-raised btn-responsive"><b>Save <span class="icon-download icon-medium"></span></b></button>
<div class="chartLoading">Initializing<img src="images/EATfJf4.gif"></div>
<div class="svg-chart" id="chart"> </div>
</div>
</div>
</div>
</div>
<script>
init();
</script>
</body>