"Inspector"
Bootstrap 3.3.0 Snippet by WChangson

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Quality control of {{ id }}</h3>
</div>
<div class="panel-body">
<div class="col-md-9">
<table class="table table-bordered">
<thead>
<tr>
<th>QC</th>
<th>Sample</th>
</tr>
</thead>
<tbody>
<tr>
<td>Raw sequence median quality score</td>
<td>{{ qc.table.fastqc.0 }}</td>
</tr>
<tr>
<td>% Reads uniquely mapped</td>
<td>{{ qc.table.map.0 }}</td>
</tr>
<tr>
<td>PCR bottleneck coefficient (PBC)</td>
<td>{{ qc.table.pbc.0 }}</td>
</tr>
<tr>
<td>Number of merged Total/Fold 10/Fold 20 peaks </td>
<td>{{ qc.table.peaks.0 }} / {{ qc.table.peaks.1 }} / {{ qc.table.peaks.2 }}</td>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
body {
padding-top: 20px;
padding-bottom: 20px;
}
.navbar {
margin-bottom: 20px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: