comparison data/ribocount.html @ 0:ca58e9466cbf

First commit
author Vimalkumar Velayudhan <vimal@biotechcoder.com>
date Mon, 29 Jun 2015 16:38:36 +0100
parents
children 7571f5c89090
comparison
equal deleted inserted replaced
-1:000000000000 0:ca58e9466cbf
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4
5 <!-- Basic Page Needs
6 –––––––––––––––––––––––––––––––––––––––––––––––––– -->
7 <meta charset="utf-8">
8 <title>Ribo-Seq profile counts</title>
9 <meta name="description" content="">
10 <meta name="author" content="">
11
12 <!-- Mobile Specific Metas
13 –––––––––––––––––––––––––––––––––––––––––––––––––– -->
14 <meta name="viewport" content="width=device-width, initial-scale=1">
15
16 <!-- FONT
17 –––––––––––––––––––––––––––––––––––––––––––––––––– -->
18 <!--<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600"-->
19 <!--rel="stylesheet" type="text/css">-->
20
21 <!-- CSS
22 –––––––––––––––––––––––––––––––––––––––––––––––––– -->
23 <link rel="stylesheet" href="css/normalize.css">
24 <link rel="stylesheet" href="css/skeleton.css">
25 <link rel="stylesheet" href="css/custom.css">
26
27 <!-- Favicon
28 –––––––––––––––––––––––––––––––––––––––––––––––––– -->
29 <link rel="icon" type="image/png" href="images/favicon.png">
30
31 </head>
32 <body>
33
34 <!-- Primary Page Layout
35 –––––––––––––––––––––––––––––––––––––––––––––––––– -->
36 <div class="container">
37 <div class="row">
38 <div class="twelve columns">
39 <h3 id="page-title">Ribo-Seq profile counts for all transcripts</h3>
40 <h5>Total transcript(s) <span class="info">{count}</span>, Footprint
41 length <span class="info">{length}</span></h5>
42 <div id="overlay">Sorting this large table...</div>
43 <table id="counts-table" class="tablesorter u-full-width">
44 <thead>
45 <tr>
46 <th>Number</th>
47 <th>Transcript name</th>
48 <th>Total reads</th>
49 <th>Counts (csv file)</th>
50 </tr>
51 </thead>
52 <tbody>
53 {table_content}
54 </tbody>
55 </table>
56 <p class="text-muted">Time taken for generating counts (H:MM:SS): {duration}</p>
57 </div>
58 </div>
59 </div>
60 <script type="text/javascript" src="js/jquery-1.11.3.min.js"></script>
61 <script type="text/javascript" src="js/jquery.tablesorter.min.js"></script>
62 <script type="text/javascript" src="js/custom.js"></script>
63 </body>
64 </html>