This repository has been archived by the owner on May 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fdisplay.html
59 lines (56 loc) · 2.21 KB
/
fdisplay.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
<!DOCTYPE html>
<html lan="en">
<head>
<meta charset="utf-8" />
<title>VCF Consequence Prediction Viewer</title>
<link rel="stylesheet" type="text/css" href="fsheet.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"> </script>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script type="text/javascript" src="fsearch.js"></script>
</head>
<body id="main">
<h1>VCF Consequence Predictor Search</h1>
<h2>Search by:</h2>
<form name="choose" id="choose" action="" required>
<input type="radio" name="choice" id="choice" value="gene"/> Gene
<input type="radio" name="choice" id="choice" value="dn"/> Clinical Diagnosis
<input type="radio" name="choice" id="choice" value="rs"/> RS
<input type="radio" name="choice" id="choice" value="sig"/> Clinical Significance
<input type="radio" name="choice" id="choice" value="sepred"/> SnpEff Prediction
<input type="radio" name="choice" id="choice" value="anpred"/> ANNOVAR prediction
</form>
<form name="search" id="search" action="">
<input id="search_term" name="search_term" type="search" value="" autofocus="autofocus" placeholder="Enter a search term"/>
<input name="submit" type="submit" id="submit" value="submit">
</form>
<form name="rs_search" id="rs_search" action="">
<input id="rs_term" name="rs_term" type="search" value="" autofocus="autofocus" placeholder="Enter a reference SNP ID"/>
<input name="rs_submit" type="submit" id="rs_submit" value="submit">
</form>
<section id="results">
<p>
<span id="match_count">0</span> match(es) found.
</p>
<table style="width 80%">
<thead>
<tr>
<td>Location</td>
<td>Gene</td>
<td>Genotype</td>
<td>Clinical Diagnosis</td>
<td>RS</td>
<td>Clinical Significance</td>
<td>ClinVar Variant Type</td>
<td>SnpEff Prediction</td>
<td>SnpEff Variant Type</td>
<td>ANNOVAR Prediction</td>
<td>ANNOVAR Variant Type</td>
</tr>
</thead>
<tbody>
<! filled by javascript >
</tbody>
</section>
</body>
</html>