[41c1e8]: / exseek / templates / igv / index.html

Download this file

79 lines (66 with data), 1.6 kB

 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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
}
#panel {
border: 1px solid lightgray;
padding: 10px;
margin: auto;
width: 400px;
height: 400px;
}
#center-panel {
width: 600px;
height: 90%;
margin: 5px;
border: 1px solid lightgray;
border-radius: 10px;
margin: auto;
margin-top: 20px;
margin-bottom: 20px;
}
h1 {
text-align: center;
}
h2 {
text-align: center;
}
h3 {
text-align: center;
}
#dataset-table {
text-align: center
}
</style>
</head>
<body>
<div id="center-panel">
<table id="dataset-table">
<thead>
<tr>
<th>Dataset</th>
<th>Genome</th>
<th>Transcriptome</th>
<th>rRNA</th>
<th>circRNA</th>
</tr>
</thead>
<tbody>
{% for dataset in datasets %}
<tr>
<th scope="row">{{ dataset.name }}</th>
<td>{% if dataset.genome %}<a href="igv/html/{{ dataset.name }}/{{ dataset.genome }}">Link</a>{% else}NA{% endif %}</td>
<td>{% if dataset.transcriptome %}<a href="igv/html/{{ dataset.name }}/{{ dataset.transcriptome }}">Link</a>{% else}NA{% endif %}</td>
<td>{% if dataset.rRNA %}<a href="igv/html/{{ dataset.name }}/{{ dataset.rRNA }}">Link</a>{% else}NA{% endif %}</td>
<td>{% if dataset.circRNA %}<a href="igv/html/{{ dataset.name }}/{{ dataset.circRNA }}">Link</a>{% else}NA{% endif %}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</body>
</html>