-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (47 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>V-Score Search</title>
<link rel="stylesheet" href="./Software/styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.min.js"></script>
</head>
<body>
<div id="instructionsBox">
<h2>Instructions</h2>
<p>Choose database, then accession</p>
<p>ex. [VOG, VOG00001]</p>
<p>Click V-Score header to sort.</p>
<p>Download data, click Export CSV</p>
<p>Databases: KEGG, eggNOG, Pfam, PHROG, VOG</p>
<p>You can also search by protein name</p>
</div>
<img src="./Software/LabHeader.jpg" alt="Header of Lab" id="headerImage">
<h1>V-Score Search</h1>
<div class="search-container">
<input type="text" id="searchInput" placeholder="Search...">
</div>
<a href="data.csv" download="data.csv">Export CSV</a>
<table id="dataTable">
<thead>
<tr>
<th class="sortable" data-column="Accession">Accession</th>
<th class="sortable" data-column="Protein Function">Protein Function</th>
<th class="sortable" data-column="V-Score">V-Score</th>
<th class="sortable" data-column="Log V-Score">Log V-Score</th>
<th class="sortable" data-column="Database">Database</th>
</tr>
</thead>
<tbody>
<!-- Data will be inserted here dynamically -->
</tbody>
</table>
<!-- Pagination container -->
<div id="pagination"></div>
<footer>
<p>Source: Citations Go Here</p>
</footer>
<script src="./Software/script.js"></script>
</body>
</html>