-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (94 loc) · 5.47 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
<HTML>
<HEAD>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="static/css/foundation.css"/>
<!--<link rel="stylesheet" type="text/css" href="static/css/index.css"> -->
<script src="static/js/vendor/modernizr.js"></script>
<!-- <link rel="stylesheet" href="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.css">
<script src="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.js"></script> -->
<title>TCGA WGS Progress Monitor</title>
</HEAD>
<BODY>
<!-- Navigation Bar -->
<nav class="top-bar foundation-bar" data-topbar>
<ul class="title-area">
<li class="name">
<span data-tooltip class="has-tip" title="Generate PCR Tag Watermarks for your gene."><h1 class="show-for-small-only"><a href="#">WGS Caller</a></h1></span>
<span data-tooltip class="has-tip" title="Generate PCR Tag Watermarks for your gene."><h1 class="show-for-medium-only"><a href="#">WGS Variant Caller</a></h1></span>
<span data-tooltip class="has-tip" title="Generate PCR Tag Watermarks for your gene."><h1 class="show-for-large-only"><a href="#">WGS Variant Caller</a></h1></span>
</li>
</ul>
<!-- Right Nav Section -->
<section class="top-bar-section">
<ul class="right">
<!-- <li><a href="http://foundation.zurb.com/docs/" target="_blank">Foundation Docs</a></li> -->
<!-- <li><a href="http://codepen.io/ZURBFoundation/full/olduj/" target="_blank">Grid Example</a></li> -->
<li><a href="http://54.235.254.95/gd/index.html" target="_blank">Visualizer</a></li>
<li class="active"><a>Variant Caller</a></li>
<!-- <li><a href="http://codepen.io/ZURBFoundation/full/fcFnq" target="_blank">Interchange</a></li> -->
</ul>
</section>
</nav>
<div class="row" id="content">
<div class="large primary">
<div class="row column text-center" style="width:100%;">
<h1>TCGA WGS Progress Monitor</h1>
</div>
<div class="column text-left" style="width:50%;">
<blockquote>
Somewhere, something incredible is waiting to be known.
<cite>
Carl Sagan
</cite>
</blockquote>
</div>
</div>
<div class="row column" style="width:100%;">
<ul class="breadcrumbs" style="border-style:none;">
<li><a href="#">Home</a></li>
<li><a href="#">Tools</a></li>
<li class="unavailable"><a href="#">Variant Tools</a></li>
<li class="current"><a href="#">TCGA Variant Caller</a></li>
</ul>
</div>
<div class="large-10 columns">
<div id="processing" class="table-scroll"></div>
<div id="queued" class="table-scroll"></div>
<div id="finished" class="table-scroll"></div>
<DIV id="information"></DIV>
<div id = "recordfinished"></div>
<div id = "samtoolssort"></div>
<div id = "mpileup"></div>
<div id = "varscansomatic"></div>
<div id = "varscanprocesssomaticsnps"></div>
<div id = "varscanprocesssomaticindels"></div>
</div>
<div class="small-2 columns" data-sticky-container>
<div class="sticky" data-sticky data-anchor="content">
<br/>
<h4 style="border-bottom: #cccccc; border-bottom-style: solid; border-bottom-width: thin;"><b>Metrics</b></h4>
<div id="metrics" style="font-size: small;"></div>
<h4 style="border-bottom: #cccccc; border-bottom-style: solid; border-bottom-width: thin;"><b>Bulk Submit</b></h4>
<div id="bulk_submit" style="font-size: small;">
<button href="#" class="small secondary radius button" onclick="BatchSubmit(10);return false;" href="javascript:void(0);">Submit 10</button><br>
<button href="#" class="small secondary radius button" onclick="BatchSubmit(50);return false;" href="javascript:void(0);">Submit 50</button><br>
<button href="#" class="small secondary radius button" onclick="BatchSubmit(100);return false;" href="javascript:void(0);">Submit 100</button><br>
<!-- <a href="#" data-dropdown="batch_options" class="small decondary radius button dropdown">Batch Submit</a><br>-->
<!-- <ul id="batch_options" data-dropdown-content class="f-dropdown" aria-hidden="true">-->
<!-- <li><a id="submit10" onclick="BatchSubmit(10);return false;" href="javascript:void(0);">Submit 10</a></li>-->
<!-- <li><a id="submit50" onclick="BatchSubmit(50);return false;" href="javascript:void(0);">Submit 50</a></li>-->
<!-- <li><a id="submit100" onclick="BatchSubmit(100);return false;" href="javascript:void(0);">Submit 100</a></li>-->
<!-- </ul>-->
</div>
<h4 style="border-bottom: #cccccc; border-bottom-style: solid; border-bottom-width: thin;"><b>Nodes</b></h4>
<div id="nodes" style="font-size: small;"></div>
</div>
</div>
</div>
<script src="static/js/vendor/jquery.js"></script>
<script src="static/js/foundation.min.js"></script>
<script src="static/js/update.js"></script>
</BODY>
</HTML>