-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
92 lines (92 loc) · 4.07 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<title>Openmethease Geno</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Openmethease Geno">
<meta name="keywords" content="openmethease, dna, gene, genotype, snp, rsnum, analysis">
<meta name="author" content="exander77">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/sortable.min.css">
<script type="text/javascript" src="bundle/bundle.js"></script>
<script type="text/javascript" src="js/sortable.min.js"></script>
</head>
<body>
<span style="font-weight: bold">!!! WARNING !!! Openmethease Geno v0.0.3 - Input hg38 alligned (g)VCF (vcf or vcf.gz): <input type="file" name="file" id="file" disabled></span>
<div style="float:right">
Donate:
<!--
<a target="blank" href="https://patreon.com">Patreon</a> |-->
<a target="blank" href="https://github.com/exander77/openmethease/blob/main/DONATE.md">BTC/LTC/DOGE/ETH/Monero</a> |
<a target="blank" href="https://www.paypal.com/donate?business=BMGUXHBMTEQLW&item_name=Openmethease¤cy_code=EUR">EUR</a> |
<a target="blank" href="https://www.paypal.com/donate?business=BMGUXHBMTEQLW&item_name=Openmethease¤cy_code=USD">USD</a> &
<a target="blank" href="https://github.com/exander77/openmethease">Help & Support</a>
</div>
<br />
I attribute used data to
<a target="blank" href="https://www.snpedia.com/index.php/Terms_of_Use">SNPedia</a>
under the same licensing
<a target="blaank" href="https://creativecommons.org/licenses/by-nc-sa/3.0/us/">CC Attribution-Noncommercial-Share Alike 3.0 Unported</a>. Data were modified and transformed for Openmethease.
<hr />
<div>
<textarea id="log" readonly></textarea>
<div class="tab">
<button id="RsnumTabButton" class="tablinks">Rsnum (+/- Working)</button>
<button id="GenosetTabButton" class="tablinks">Genoset (Experimental)</button>
<button id="PharmacogeneticsTabButton" class="tablinks">Pharmacogenetics (Experimental)</button>
</div>
<table id="RsnumTab" class="sortable tabcontent">
<thead>
<tr>
<th>Rsid</th>
<th>Genotype</th>
<th>Magnitude</th>
<th>Repute</th>
<th>Summary</th>
<th>Source</th>
<tr/>
<tr>
<td><input id="searchRsid" type="text" /></td>
<td><input id="searchGenotype" type="text" /></td>
<td><input id="searchMagnitude" type="text" /></td>
<td><input id="searchRepute" type="text" /></td>
<td><input id="searchSummary" type="text" /></td>
<td><input id="searchSource" type="text" /></td>
</tr>
<tr><td colspan="5" style="width: 100%"></td></tr>
</thead>
<tbody id="RsnumTableBody"></tbody>
</table>
<table id="GenosetTab" class="sortable tabcontent">
<thead>
<tr>
<th>Gsid</th>
<th>Magnitude</th>
<th>Repute</th>
<th>Summary</th>
<th>Source</th>
<tr/>
<tr><td colspan="4" style="width: 100%"></td></tr>
</thead>
<tbody id="GenosetTableBody"></tbody>
</table>
<table id="PharmacogeneticsTab" class="sortable tabcontent">
<thead>
<tr>
<th>Medicine</th>
<th>Magnitude</th>
<th>Repute</th>
<th>Summary</th>
<th>Source</th>
<tr/>
<tr><td colspan="6" style="width: 100%"></td></tr>
</thead>
<tbody id="PharmacogeneticsTableBody"></tbody>
</table>
</div>
</div>
</body>
</html>