-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSPROUT2.html
42 lines (36 loc) · 1.18 KB
/
SPROUT2.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
<head>
<meta charset="UTF-8">
<title>SPROUT</title>
<link href="stylesheets/flatui/dist/css/vendor/bootstrap.min.css" rel="stylesheet">
<link href="stylesheets/flatui/dist/css/flat-ui.min.css" rel="stylesheet">
</head>
<body>
<div style="margin: 50px;">
<h4>SPROUT</h4>
<a href="https://www.biorxiv.org/content/10.1101/404947v1">SPROUT is a machine learning algorithm that predicts the DNA repair outcome in CRISPR-CAS9 experiments.</a>
<br>
<a href="https://github.com/amirmohan/SPROUT">Click to access the source code.</a>
<br>
<br>
Input the 20-nucleotide sgRNA sequence followed by the 3-nucleotide PAM sequence
<br>
(e.g., CCACCAAAGTACGATGTGAGAGG)
<br>
<br>
<div>
<form method="POST" action="http://13.59.18.211:80">
<textarea type="text" name="inp" placeholder="Input sequence ..." class="form-control" style="width: 880px; height: 100px;"></textarea>
<br>
<p>Input: </p>
<div class="share" style="width: 400px;">
</div>
<br>
<p>Output: </p>
<div class="share" style="width: 400px;">
</div>
<br>
<input type="submit" value="Predict" class="btn btn-primary" style="width: 150px;" />
</form>
</div>
</div>
</body>