-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdna.html
36 lines (31 loc) · 1.52 KB
/
dna.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DNA visualization</title>
<script src=gl-matrix-min.js></script>
<script src=webgl-utils.js></script>
<script src=dna.js></script>
</head>
<body onload="main();">
<h1>Three dimensional visualization of DNA sequences</h1>
<iframe width="854" height="480" src="https://www.youtube.com/embed/IjGZ6kF2gbQ" frameborder="0" allowfullscreen></iframe>
<form>
<p>Enter a DNA sequence.<br>
<input id=sequence size=80 pattern="[ACGTN]+" title="DNA sequence (accepted characters are ACGTN)" value=ACGT></p>
<input id=submit type=button value=submit>
<input id=random type=button value="generate a random one">
<input id=file type=file>
</form>
</p>
<p>See the result here. You can use your mouse to rotate the view, and the mouse wheel to zoom.<br>
<canvas id="canvas" style="border: none;" width="800" height="600"></canvas>
</p>
<h2>Credits</h2>
<ul>
<li>This is an implementation of <a href=http://www.cs.ucr.edu/~eamonn/DNA/>this academic work</a></li>
<li>The WebGL code is inspired from <a href=http://imagine.inrialpes.fr/people/Francois.Faure/htmlCourses/WebGL/pointsVaryingColor.html>this demo</a></li>
<li>The mouse-controlled rotation is done with an unorthodox method. See <a href=http://grondilu.github.io/cube.html>this for more details</a>.</li>
</ul>
</body>
</html>