-
Notifications
You must be signed in to change notification settings - Fork 0
/
advance_search.html
85 lines (82 loc) · 4.44 KB
/
advance_search.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Home - MDPD</title>
<link rel = "stylesheet" type = "text/css" href = "css/main.css" />
<script type = "text/javascript" src = "js/advance_search_input.js"></script>
</head>
<body>
<div class = "section_header">
<center><p class="title">MDPD - Microbiome Database of Pulmonary Diseases</p></center>
</div>
<div class = "section_menu">
<center>
<table cellpadding="3px">
<tr class="nav">
<td class="nav"><a href="index.php" class="side_nav">Home</a></td>
<td class="nav"><a href="#" class="active">Search</a></td>
<td class="nav"><a href="browse.php" class="side_nav">Browse</a></td>
<td class="nav"><a href="team.html" class="side_nav">Team</a></td>
</tr>
</table>
</center>
</div>
<!--<div class = "section_left"></div>-->
<div class = "section_middle">
<br/>
<p class="intro">
<b>LHSPred</b> is a web based tool that enables users to predict risk of
pneumonia with clinical examination features. It uses Support Vector Regressor
(SVR) and Multi-layer Perceptron Regressor (MLPR) trained with COVID-19 patients'
data to determine a score that evaluates the involvement of lesions in the lungs.
This computed score is then used to predict risk of pneumonia.
</p><br/>
<form method="post" action="advance_search_result.php">
<br/><center><button type="button" onclick="update_label()">Show Current Logical Query</button></center><br/>
<table class="form" id="form_input_table" border="0" align="center">
<tr class="input_row">
<td style="width:10%;"></td>
<td style="width:10%;"><input type="hidden" name="lo0" value="" /></td>
<td style="width:30%;">
<select class="full" id="k0" name="k0" onchange="updateKeyChoice(this)">
<option value="Disease" selected>Disease</option>
<option value="AssayType">Assay Type</option>
<option value="Country">Country</option>
<option value="Instrument">Instrument</option>
<option value="Year">Year</option>
<option value="IsolationSource">Isolation source</option>
</select>
</td>
<td style="width:10%;">
<!-- <select class="full" id="op0" name="op0">-->
<!-- <option value="=" selected>=</option>-->
<!-- <option value="<"><</option>-->
<!-- <option value="<="><=</option>-->
<!-- <option value=">">></option>-->
<!-- <option value=">=">>=</option>-->
<!-- </select>-->
</td>
<td style="width:40%;">
<!-- <input class="full" type="text" id="v0" name="v0" placeholder="Enter search keyword">-->
</td>
</tr>
<script>updateKeyChoice(document.getElementById('k0'));</script>
</table>
<br/>
<input type="hidden" id="total_count" name="total_count" value="1" />
<script>document.getElementById('total_count').value = 1;</script>
<table border="0" align="center">
<tr>
<td><center><button type="button" onclick="addRow()">Add</button></center></td>
<td><center><button type="button" onclick="deleteRow()">Delete</button></center></td>
</tr>
<tr>
<td><center><input type="submit" name="Submit" value="Submit" style="border-radius:10px;" /></center></td>
<td><center><button type="reset" value="Reset">Reset</button></center></td>
</tr>
</table>
</form>
</div>
</body>
</html>