-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsolve_brain_webi.html
50 lines (47 loc) · 2.21 KB
/
solve_brain_webi.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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>SOLVE-Brain 1.0.3 Gene Annotation</title>
<link rel="shortcut icon" href="/static/favicon.ico" />
<link rel="stylesheet" href="/static/css/solve_brain.css" />
<script src="http://code.jquery.com/jquery-2.1.1.min.js"/></script>
</head>
<body>
<div id="content">
<img src="../images/SOLVE_brain_logo.jpg" />
<p>Web Interface</p>
<hr />
<h2>Gene Annotation</h2>
<p>This tool links genes to further brain-specific annotations. You can then manage your list, and edit or remove genes.<br />
All data is saved using HTML5's sessionStorage, so none of your data touches our server. <br />
When you close your browser, the data disappears.</p>
<table id="genes-table">
<tr id="genes-head">
<th>ID</th>
<th>Gene</th>
<th>Annotations</th>
</tr>
</table>
<form id="genes-form">
<div class="item text">
<label></label>
<!-- <div class="field"><input type="text" name="genes" /></div> -->
<div class="field"><textarea rows="2" name="genes" id="genes" placeholder="Paste genes here..." /></textarea></div>
<div class="button-wrapper">
<div class="item button button-default">
<div class="field"><input type="submit" id="genes-op-save" value="Add" /></div>
</div>
<div class="item button">
<div class="field"><input type="button" id="genes-op-discard" value="Discard" /></div>
</div>
</div>
<input type="hidden" name="id_entry" value="0" />
</form>
<hr />
<p>SOLVE-Brain also has a command-line interface for sorting and filtering VCFs. Read more about the complete tool <a href="/solve_brain/home" />here</a>.<br /><p>
<p><small>SOLVE-Brain 1.0.3 Paciorkowski Lab (c)2013-2014</small></p>
</div>
<script src="/static/js/solve_brain_webi.js" /></script>
</body>
</html>