This repository was archived by the owner on Aug 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloadForm.php
More file actions
74 lines (70 loc) · 2.46 KB
/
loadForm.php
File metadata and controls
74 lines (70 loc) · 2.46 KB
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
<?php
//<div class = \"col-sm-0\"></div>
//<a href=\"#\" class=\"close\" data-dismiss=\"panel\" aria-label=\"close\" id=\"hide\">×</a>
echo "
<div class = \"col-sm-12\" id = \"form\">
<form>
<div class=\"row\">
<div class=\"col-sm-4\">
<div class=\"form-group\">
<label for=\"inputType\">Sample type:</label>
<select class=\"form-control\" id=\"inputType\">
<option value=\"geneList\">Proteins</option>
<option value=\"rsidList\">Genetic variants - RsId</option>
<option value=\"vcf\">Genetic variants - VCF</option>
<option value=\"peptideList\">Peptides</option>
<option value=\"uniprotList\">Proteins - UniProt Accessions</option>
<option value=\"ensemblList\">Proteins - Ensembl</option>
<option value=\"uniprotListAndModSites\">Proteoforms</option>
</select>
</div>
<div class=\"form-group\">
<label for=\"margin\">Site margin:</label>
<output name=\"marginValue\" id=\"marginValueId\">3</output>
<input id=\"margin\" type=\"range\"
value=\"3\"
min=\"0\" max=\"15\" oninput=\"marginValue.value = margin.value\"/>
<input type=\"checkbox\" id=\"showTopLevelPathways\" checked align=\"right\"> Show top level pathways
</div>
</div>
<div class=\"col-sm-4\">
<div class=\"form-group\">
<label for=\"input\">Sample data:</label><br/>
<textarea class=\"form-control\" id=\"input\" required rows=\"10\">
P20823
P01308
P41235
P35557
P54259
P37231
Q9NQB0
P02649
P02741
Q14654
</textarea>
</div>
</div>
<div class=\"col-sm-4\">
<div class=\"form-group\">
<label for=\"matchingType\">Matching type:</label>
<select class=\"form-control\" id=\"matchingType\">
<option value=\"strict\">Strict</option>
<option value=\"flexible\">Flexible</option>
<option value=\"one\">At least one in common</option>
</select>
</div>
</div>
<div class=\"row\">
<div class=\"col-sm-4\" align=\"right\">
<button type=\"submit\" class=\"btn btn-primary\" onclick=\"getPathwayData(
document.getElementById('inputType').value,
document.getElementById('matchingType').value,
document.getElementById('input').value,
document.getElementById('margin').value,
document.getElementById('showTopLevelPathways').value); return false;\">Submit</button>
</div>
</div>
</div>
</form>
</div>";
?>