forked from xli26/xli26.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery_test.html
More file actions
160 lines (142 loc) · 7.12 KB
/
query_test.html
File metadata and controls
160 lines (142 loc) · 7.12 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>HBaaS</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/sb-admin-2.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="css/main.css" rel ="stylesheet">
</head>
<body>
<nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0; background-color:#444;">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!--<img width="55px" src="img/logo.png" /> looks weird-->
<a class="navbar-brand" href="index.html">HBaaS</a>
</div>
<div class="navbar-default sidebar" role="navigation">
<div class="sidebar-nav navbar-collapse">
<ul class="nav" id="side-menu">
<li class="sidebar-search">
<div class="input-group custom-search-form">
<input type="text" class="form-control" placeholder="Search..." />
<span class="input-group-btn">
<button class="btn btn-default" type="button">
<i class="fa fa-search"></i>
</button>
</span>
</div>
<!-- /input-group -->
</li>
<li>
<a href="index.html"><i class="fa fa-home fa-fw"></i> Home</a>
</li>
<li>
<a href="people.html"><i class="fa fa-user fa-fw"></i> People</a>
</li>
<li>
<a href="reports.html"><i class="fa fa-file fa-fw"></i> Reports</a>
</li>
<li>
<a href="contact.html"><i class="fa fa-envelope fa-fw"></i> Contact</a>
</li>
<li>
<a href="materials.html"><i class="fa fa-folder fa-fw"></i> More Materials</a>
</li>
<li>
<a class="active" href="query_test.html"><i class="fa fa-flash fa-fw"></i> Query</a>
</li>
</ul>
</div>
<!-- /.sidebar-collapse -->
</div>
<!-- /.navbar-static-side -->
</nav>
<div id="page-wrapper">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">User Query</h1>
</div>
</div>
<form action = "#" method="post" id="proteinSeqSearchForm" enctype="multipart/form-data">
<div class = "container-fluid">
<div role="tabpanel">
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#PasteASequence" aria-controls="Paste a Sequence" role="tab" data-toggle="tab">Paste a Sequence</a></li>
<li role="presentation"><a href="#UploadAFile" aria-controls="profile" role="tab" data-toggle="tab">Upload a file</a></li>
<li role="presentation"><a href="#Accession" aria-controls="messages" role="tab" data-toggle="tab">Accession / ID Lookup</a></li>
<li role="presentation"><a href="#HmmProfile" aria-controls="profile" role="tab" data-toggle="tab">HMM Profile</a></li>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="PasteASequence">
<br />
<textarea name="seq" id="seq"></textarea>
</div>
<div role="tabpanel" class="tab-pane" id="UploadAFile">
<br />
<input type="file" name="file" id="file" />
</div>
<div role="tabpanel" class="tab-pane" id="Accession">
<br />
<input type="text" name="acc" id="acc" title="Accession / ID" autocomplete="off" />
</div>
<div role="tabpanel" class="tab-pane" id="HmmProfile">
<br />
<input type="file" name="file" id="HmmProfle" />
</div>
</div>
</div>
</div>
<br>
<legend>Sequence Database</legend>
<div class="container-fluid">
<p>Large collections</p>
<label for = "genbank">
<input id = "genbank" name = "seqdb" type = "radio" value = "genbank" title = "Sequence database" checked /> Genbank
</label>
<label for="nr">
<input id="nr" name = "seqdb" type="radio" value="nr" title="Sequence database"/> NR
</label>
<label for="refseq">
<input id="refseq" name = "seqdb" type="radio" value="refseq" title="Sequence database"/> RefSeq
</label>
<label for="uprot">
<input id="uprot" name = "seqdb" type="radio" value="uniprotkb" title="Sequence database"/> UniProtKB
</label>
<label for="pfamseq">
<input id="pfamseq" name = "seqdb" type="radio" value="pfamseq" title="Sequence database"/> Pfamseq
</label>
</div>
<legend>Limited By Taxonomy</legend>
<input type="text" name="tax" id="tax" autocomplete="off" />
<br />
<button type="submit" id = "subbutton">Submit</button>
<button type="reset" id = "resbutton">Reset</button>
</form>
</div>
<script src="js/jquery-1.11.0.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Metis Menu Plugin JavaScript -->
<script src="js/plugins/metisMenu/metisMenu.min.js"></script>
<!-- Morris Charts JavaScript -->
<script src="js/plugins/morris/raphael.min.js"></script>
<script src="js/plugins/morris/morris.min.js"></script>
<script src="js/plugins/morris/morris-data.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/sb-admin-2.js"></script>
</body>
</html>