-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·79 lines (64 loc) · 2.21 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html>
<head>
<link rel="stylesheet" type="text/css" href="chromo.css"></link>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript">
function log(s) {
$('#log').html( $('#log').html() + '<br/>' + s );
}
function logScroll() {
d = document.getElementById('log');
d.scrollTop = d.scrollHeight;
}
function writeElement(s, sId) {
$(sId).html(s);
$(sId).toggle(s != "");
}
$(document).ready(function() {
$('#progress').hide();
});
</script>
</head>
<body>
<div>
<!-- <h3>
Chromothripsis: <a href="." onclick="window.external.ChromothripsisTest(); return false;">4q</a>
<a href="." onclick="window.external.ChromothripsisNull(); return false;">4q Null</a>
</h3>
<p>
<a href="." onclick="window.external.CreateNullModel(); return false;">Nullmodell erzeugen</a>
|
<a href="." onclick="window.external.TestHmmscan(); return false;">Hmmscan Benchmark</a>
|
<a href="." onclick="window.external.TestChr4Fac(); return false;">Konvertiertes Chr4 testen</a>
|
<a href="." onclick="window.external.TestSequencer(); return false;">Sequencer testen</a>
|
<a href="." onclick="if (confirm('This will take a while.')) window.external.SqliteSynteny(); return false;">Ensembl Synteny CSVs to SQLite</a>
-->
<!--
<br/>
<br/>
<p><a href="." onclick="window.external.ConvertFasta(); return false;">FASTA konvertieren</a></p>
<p>
<a href="." onclick="window.external.TestPfam(); return false;">PFam testen</a>
</p>
-->
|
<!-- <a href="." onclick="if (confirm('This will take a while.')) window.external.SqliteEnsembl(); return false;">Ensembl Annotation CSVs to SQLite</a>
<p>
<a href="." onclick="window.external.SqliteChromosome(); return false;">Chromosome Annotation CSV to SQLite</a>
</p>
|
<a href="." onclick="if (confirm('This will take a while. You will also have to re-create the Null Model.')) window.external.ConvertEnsembl(); return false;">Ensembl Tables to Chromophobia Tables</a>
</p>
-->
<div id="log">
</div>
</div>
<div id="progress">
-progress-
</div>
</body>
</html>