-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (53 loc) · 1.54 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
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Deciphering RNA Splicing Logic Visualizaiton
</title>
<!-- Import d3.js -->
<script type="text/javascript" src="https://d3js.org/d3.v4.js"></script>
<!-- CSS style -->
<link rel="stylesheet" href="static/styles.css"></link>
</head>
<body>
<!-- Javascript code that use d3.js to draw figures -->
<script type="text/javascript" src="static/main.js"></script>
<!-- Input exon -->
<form method="post">
<input
type="text" name="exon" id="exon" size="80"
placeholder="Enter a 70-nucleotide exon"
required maxlength="70" pattern="([ATUGCatugc]){70}"
oninvalid="this.setCustomValidity('Please enter a 70-nucleotide exon')"
oninput="this.setCustomValidity('')""
>
<input type="submit" value="Submit">
</form>
<!-- Bento box layout -->
<div class="grid-container">
<div class="expandable-view">
expandable-view
</div>
<div class="expandable-zoom">
expandable-zoom
</div>
<div class="structure-view">
structure-view
</div>
<div class="hierarchical-view-1">
hierarchical-view-1
</div>
<div class="hierarchical-view-2">
hierarchical-view-2
</div>
<div class="hierarchical-view-3">
hierarchical-view-3
</div>
<div class="filter-legend">
filter-legend
</div>
</div>
</body>
</html>