-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoint-mutation-count.html
32 lines (26 loc) · 1.08 KB
/
point-mutation-count.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
<html>
<head>
<title>Nucleic Acid Analysis</title>
<link rel="icon" href="assets/img/favicon.ico" sizes="16x16" type="image/png">
<link rel="stylesheet" href="assets/css/materialize.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<script src="assets/js/jquery.js"></script>
<script src="assets/js/custom.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!-- Navbar -->
<div id="navbar">
</div>
<!-- GC and AT Content of DNA -->
<div class="container" id="gc-at-content">
<p style="text-align:center;font-size:26px;">Calculate Hamming Distance</p>
<h6>Enter the first DNA Sequence</h6>
<input type="text" id="dna1" name="dna" onkeypress="dnaSequenceValid()" required><br>
<h6>Enter the second DNA Sequence</h6>
<input type="text" id="dna2" name="dna" onkeypress="dnaSequenceValid()" required><br>
<input type="button" class="customButton" value="Submit" onclick="calcHD()"><br><br>
<p id="hamming-distance" style="color:blue;"></p>
</div>
</body>
</html>