forked from jbarnoud/cgbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CG Builder</title>
<script src="https://cdn.rawgit.com/arose/ngl/v2.0.0-dev.31/dist/ngl.js"></script>
<script src="scripts/main.js"></script>
<link rel="stylesheet" href="styles/main.css" />
</head>
<body>
<div id="structview">
<div id="viewport"></div>
</div>
<div id="controls">
<form>
<label for="files" class="btn">Load molecule</label>
<input id="mol-select" type="file" name="files" accept=".pdb,.cif,.ent,.gz,.gro"></input>
</form>
<button class="new-bead" disabled>New bead</button>
<button class="toggle-aa-labels" disabled>Hide labels</button>
<button id="toggle-cg" disabled>Toggle CG view</button>
</div>
<div id="beadlist">
<ul id="bead-list"></ul>
</div>
<div id="file-outputs">
<button id='dl-ndx' class='dl'>Get the NDX file</button>
<pre id="ndx-output">NDX output</pre>
<button id='dl-map' class='dl'>Get the MAP file</button>
<pre id="map-output">MAP output</pre>
<button id='dl-gro' class='dl'>Get the GRO file</button>
<pre id="gro-output">GRO output</pre>
</div>
</body>
</html>