-
Notifications
You must be signed in to change notification settings - Fork 56
/
analysis.php
executable file
·106 lines (81 loc) · 3.85 KB
/
analysis.php
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
<!DOCTYPE html>
<html>
<!-- NAVIGATION BAR-->
<?php include "header.html";?>
<link rel="stylesheet" type="text/css" media="screen" href="http://cdnjs.cloudflare.com/ajax/libs/fancybox/1.3.4/jquery.fancybox-1.3.4.css" />
<!-- ////////////////////////////////////////////////// -->
<!-- //////////////// RESULTS //////////////// -->
<!-- ////////////////////////////////////////////////// -->
<div class="thumbnail frame">
<div class = "caption" style="text-align: center"><h3 id="description_header"></h3></div>
</div>
<div id="results">
<!-- All plots -->
<div class="thumbnail plot_frame frame">
<div style="display:inline-block" id="landing_for_plot1" class="plot_img">
<!-- Landing spot for plot image -->
</div>
<div style="display:inline-block" id="landing_for_plot2" class="plot_img">
<!-- Landing spot for plot image -->
</div>
</div>
<div class="row">
<div class="col-lg-6">
<!-- Assembly statistics N50 etc. -->
<div class="thumbnail frame plot_frame">
<div class="caption">
<h4>Results</h4>
<p id="landing_for_text1"></p>
</div>
</div>
</div>
<div class="col-lg-6">
<!-- Variant statistics -->
<div class="thumbnail frame plot_frame">
<div class="caption">
<h4>Model</h4>
<p id="landing_for_text2"></p>
</div>
</div>
</div>
</div>
</div>
<!--View analysis later-->
<div id="codepanel" >
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">View analysis later</h3>
</div>
<div id="code" class="panel-body">
<?php
$code=$_GET["code"];
$url="http://genomescope.org/analysis.php?code=$code";
echo "Return to view your results at any time: <input type=\"text\" class=\"form-control\" value=\"$url\"></input>";
?>
</div>
</div>
</div>
<!-- ////////////////////////////////////////////////// -->
<!-- ///////////// Progress info ///////////// -->
<!-- ////////////////////////////////////////////////// -->
<div class="panel panel-info center" id="progress_panel">
<div class="panel-heading">
<h3 class="panel-title">Progress</h3>
</div>
<div class="panel-body">
<div id="plot_info">
Checking progress...
</div>
</div>
</div> <!-- End of progress info -->
<!-- ////////////////////////////////////////////////// -->
<!-- jquery must be first because bootstrap depends on it -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.csv-0.71.min.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type='text/javascript' src="js/analysis_page_script.js?rndstr="<?php rand(100000,999999) ?> ></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/fancybox/1.3.4/jquery.fancybox-1.3.4.pack.min.js"></script>
</body>
</html>