-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (52 loc) · 2.11 KB
/
index.html
File metadata and controls
57 lines (52 loc) · 2.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Local Alignment Visual</title>
<script type="text/javascript" src="./d3/d3.min.js"></script>
<script type="text/javascript" src="./local_alignment_algo.js"></script>
<style type="text/css">
</style>
</head>
<body>
<div>
<!--
<form name="parameters" onSubmit="return handleFormSubmission()">
<p>
Sequence 1 (Rows): <input type="text" id="seq_1"
placeholder="Sequence 1" value="a b c d e x x h i j k l m n">
</p>
<p>
Sequence 2 (Columns): <input type="text" id="seq_2"
placeholder="Sequence 2" value="a b c x d f g h i j k l m n">
</p>
<p>
Match Score: <input type="text" id="match"
placeholder="Match Score" value="3">
</p>
<p>
Mismatch Score: <input type="text" id="misMatch"
placeholder="Mismatch Score" value="-2">
</p>
<p>
Gap Score <input type="text" id="gap" placeholder="Gap Score"
value="-1">
</p>
<p>
<input name="Submit" type="submit" value="Submit" >
</p>
</form>
-->
<form name="parameters" onSubmit="return handleFormSubmission()">
<input type="text" id="seq_1" placeholder="Sequence 1">
<input type="text" id="seq_2" placeholder="Sequence 2">
<input type="text" id="match" placeholder="Match Score">
<input type="text" id="misMatch" placeholder="Mismatch Score">
<input type="text" id="gap" placeholder="Gap Score">
<input name="Submit" type="submit" value="Generate!">
</form>
<p></p>
</div>
<script type="text/javascript" src="local_alignment_visual.js"></script>
</body>
</html>