forked from AntonPetrov/jmolTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample1.html
More file actions
32 lines (26 loc) · 1.36 KB
/
example1.html
File metadata and controls
32 lines (26 loc) · 1.36 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
<html>
<head>
<title>Radio buttons</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="jsmol/JSmol.min.nojq.js"></script>
<script src="./jquery.jmolTools.js"></script>
</head>
<body>
<div>
<script src="./jsmol_initializer.js"></script>
</div>
<input type="button" id="neighborhood" value="Show neighborhood">
<input type="button" id="prev" value="Previous">
<input type="button" id="next" value="Next">
<label><input type="checkbox" id="showNtNums">Nucleotide numbers</label>
<input type="button" id="stereo" value="Stereo">
<div>
<!-- motif id, will retrieve the exemplar -->
<input type='radio' name="group" id='s1' class='jmolInline' data-coord='IL_85647.1'><label for='s1'>Motif IL_85647.1</label><br>
<!-- loop id -->
<input type='radio' name="group" id='s2' class='jmolInline' data-coord='IL_1S72_006'><label for='s2'>Internal loop IL_1S72_006</label><br>
<!-- unit ID list -->
<input type='radio' name="group" id='s3' class='jmolInline' data-coord='2QBG|1|B|A|1262,2QBG|1|B|U|1263,2QBG|1|B|A|1264,2QBG|1|B|A|1265,2QBG|1|B|G|1266,2QBG|1|B|U|1267,2QBG|1|B|A|1268,2QBG|1|B|A|1269,2QBG|1|B|U|2011,2QBG|1|B|G|2012,2QBG|1|B|A|2013,2QBG|1|B|A|2014,2QBG|1|B|A|2015,2QBG|1|B|U|2016,2QBG|1|B|U|2017'><label for='s3'>Internal loop IL_2QBG_048</label>
</div>
</body>
</html>