-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (39 loc) · 1.43 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
<html>
<head>
<title>ORF Finder</title>
<script type="text/javascript" src="scripts.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div id="title">
<h1>Open Reading Frame Finder</h1>
</div>
<div id="container">
<div id="content">
<h3>An Open Reading Frame (ORF) is a sequence of DNA that has the potential to encode proteins. These sequences begin with a start codon, ATG, and ends with a stop codon, TAA, TAG, or TGA.</h3>
<h3>Enter a DNA sequence below to see the ORFs contained inside it</h3>
<div id="form">
<textarea id="input" ></textarea>
<span>Minimum ORF length (nucleotides)</span>
<select id="minLength">
<option value="30" selected>30</option>
<option value="75">75</option>
<option value="150">150</option>
<option value="300">300</option>
<option value="600">600</option>
</select>
<button id="demo" onclick="loadDemo()">Demo</button>
<button id="submit">submit</button>
</div>
<div id="output">
<div class="readingFrame"><h3>Reading Frame: +1</h3></div>
<div class="readingFrame"><h3>Reading Frame: +2</h3></div>
<div class="readingFrame"><h3>Reading Frame: +3</h3></div>
<div class="readingFrame"><h3>Reading Frame: -1</h3></div>
<div class="readingFrame"><h3>Reading Frame: -2</h3></div>
<div class="readingFrame"><h3>Reading Frame: -3</h3></div>
</div>
</div>
</div>
</body>
</html>