-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
92 lines (77 loc) · 3.88 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
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE HTML>
<html lang="en">
<meta charset="utf-8"/>
<head>
<TITLE>smallRNA binding</TITLE>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="/HybriDetector/ML/Webpage/style.css">
<!--<link rel="stylesheet" href="/HybriDetector/ML/Webpage/style.css">-->
</head>
<body>
<div class="site">
<div class="site-header site-element">
<div id="menuItems" class="menuItems">
<div class="menuItem" onclick="openTab('miRNA', 0)">miRNA</div>
<div class="menuItem" onclick="openTab('tRNA', 1)">tRNA</div>
</div>
<div id="navTool" class="navTool"></div>
</div>
<div class="site-body site-element">
<div id="miRNA" class="bar tab" style="">
<form method="post" enctype="multipart/form-data">
<h4><strong>miRNA - target binding prediction tool</strong></h4>
<br/><br/>
<p>Insert miRNA sequences (20 nt) here (line separated)</p>
<div><textarea name="smallRNA" id="smallRNA" style="width:70%;height:100px;"
placeholder="Paste miRNA sequences" required></textarea></div>
<br/>
<p>Insert target mRNA sequences (50 nt) here (line separated)</p>
<div><textarea name="target" id="target" style="width:70%;height:100px;" placeholder="Paste mRNA sequences"
required></textarea></div>
<br/>
<button class="button" type="button" value="Load example" name="example" onclick="loadExample('miRNA')">Load example
</button>
<input class="button" type="reset" value="Reset" name="reset">
<button class="button" type="button" value="Submit" name="submit" onclick="makePrediction('miRNA')">Submit</button>
<br/><br/>
<div class="warning" id="warning"></div>
<br/>
<div class="result" id="result"></div>
<br/>
</form>
</div>
<div id="tRNA" class="bar tab" style="display: none">
<form method="post" enctype="multipart/form-data">
<h4><strong>tRNA - target binding prediction tool</strong></h4>
<br/><br/>
<p>Insert tRNA sequences (20 nt) here (line separated)</p>
<div><textarea name="smallRNA" id="smallRNA" style="width:70%;height:100px;"
placeholder="Paste tRNA sequences" required></textarea></div>
<br/>
<p>Insert target mRNA sequences (50 nt) here (line separated)</p>
<div><textarea name="target" id="target" style="width:70%;height:100px;" placeholder="Paste mRNA sequences"
required></textarea></div>
<br/>
<button class="button" type="button" value="Load example" name="example2" onclick="loadExample('tRNA')">Load example
</button>
<input class="button" type="reset" value="Reset" name="reset">
<button class="button" type="button" value="Submit" name="submit" onclick="makePrediction('tRNA')">Submit</button>
<br/><br/>
<div class="warning" id="warning"></div>
<br/>
<div class="result" id="result"></div>
<br/>
</form>
</div>
</div>
<div id="footer-2-cols" class="site-footer site-element">
For more information see <a href="https://github.com/ML-Bioinfo-CEITEC/HybriDetector/tree/main/ML">https://github.com/ML-Bioinfo-CEITEC/HybriDetector/tree/main/ML</a>
</div>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs/dist/tf.min.js"></script>
<script src="/HybriDetector/ML/Webpage/script.js"></script>
<!--<script src="/HybriDetector/ML/Webpage/script.js"></script>-->
</body>
</HTML>