sequenceserver 3.0 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sequenceserver might be problematic. Click here for more details.

Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/bin/sequenceserver +2 -2
  3. data/lib/sequenceserver/api_errors.rb +1 -1
  4. data/lib/sequenceserver/blast/job.rb +20 -3
  5. data/lib/sequenceserver/blast/report.rb +74 -86
  6. data/lib/sequenceserver/blast/tasks.rb +38 -0
  7. data/lib/sequenceserver/config.rb +54 -20
  8. data/lib/sequenceserver/makeblastdb.rb +16 -2
  9. data/lib/sequenceserver/report.rb +0 -6
  10. data/lib/sequenceserver/routes.rb +32 -21
  11. data/lib/sequenceserver/version.rb +1 -1
  12. data/lib/sequenceserver.rb +1 -1
  13. data/public/css/app.css +121 -0
  14. data/public/css/app.min.css +1 -0
  15. data/public/css/sequenceserver.css +0 -148
  16. data/public/css/sequenceserver.min.css +3 -3
  17. data/public/js/circos.js +2 -2
  18. data/public/js/collapse_preferences.js +37 -0
  19. data/public/js/databases.js +65 -37
  20. data/public/js/databases_tree.js +2 -1
  21. data/public/js/dnd.js +37 -50
  22. data/public/js/form.js +78 -50
  23. data/public/js/grapher.js +23 -37
  24. data/public/js/hits_overview.js +2 -2
  25. data/public/js/kablammo.js +2 -2
  26. data/public/js/length_distribution.js +3 -3
  27. data/public/js/null_plugins/grapher/histogram.js +25 -0
  28. data/public/js/null_plugins/options.js +3 -0
  29. data/public/js/null_plugins/query_stats.js +11 -0
  30. data/public/js/null_plugins/report_plugins.js +6 -1
  31. data/public/js/null_plugins/search_header_plugin.js +4 -0
  32. data/public/js/options.js +161 -56
  33. data/public/js/query.js +85 -59
  34. data/public/js/report.js +1 -1
  35. data/public/js/search.js +2 -0
  36. data/public/js/search_button.js +67 -56
  37. data/public/js/sidebar.js +1 -1
  38. data/public/js/tests/database.spec.js +5 -5
  39. data/public/js/tests/{advanced_parameters.spec.js → form.spec.js} +35 -1
  40. data/public/js/tests/mock_data/databases.json +5 -5
  41. data/public/js/tests/mocks/circos.js +6 -0
  42. data/public/js/tests/report.spec.js +4 -3
  43. data/public/js/tests/search_query.spec.js +5 -6
  44. data/public/sequenceserver-report.min.js +45 -23
  45. data/public/sequenceserver-search.min.js +57 -13
  46. data/public/sequenceserver_logo.webp +0 -0
  47. data/views/blastn_options.erb +66 -66
  48. data/views/blastp_options.erb +59 -59
  49. data/views/blastx_options.erb +68 -68
  50. data/views/layout.erb +60 -3
  51. data/views/search.erb +33 -38
  52. data/views/search_layout.erb +152 -0
  53. data/views/tblastn_options.erb +57 -57
  54. data/views/tblastx_options.erb +64 -64
  55. metadata +31 -22
  56. data/lib/sequenceserver/makeblastdb-modified-with-cache.rb +0 -345
  57. data/public/SequenceServer_logo.png +0 -0
@@ -4,15 +4,15 @@
4
4
  characters per line to preserve formatting.
5
5
  %>
6
6
 
7
- <h5>Input Query Options</h5>
8
- <ul class="list-unstyled">
7
+ <h5 class="text-lg py-4 font-medium">Input Query Options</h5>
8
+ <ul class="list-unstyled space-y-2">
9
9
  <li>
10
- <pre><%= ERB::Util.h %q|-strand <String, `both', `minus', `plus'>
10
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-strand <String, `both', `minus', `plus'>
11
11
  Query strand(s) to search against database/subject
12
12
  Default = 'both'|%></pre>
13
13
  </li>
14
14
  <li>
15
- <pre><%= ERB::Util.h %q|-query_gencode <Integer, values between: 1-6, 9-16, 21-31, 33>
15
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-query_gencode <Integer, values between: 1-6, 9-16, 21-31, 33>
16
16
  Genetic code to use to translate query (see https://www.ncbi.nlm.nih.gov/Taxonomy/
17
17
  taxonomyhome.html/index.cgi?chapter=cgencodes for details)
18
18
  Default = '1'|%></pre>
@@ -21,60 +21,60 @@
21
21
 
22
22
  <br />
23
23
 
24
- <h5>General Search Options</h5>
25
- <ul class="list-unstyled">
24
+ <h5 class="text-lg py-4 font-medium">General Search Options</h5>
25
+ <ul class="list-unstyled space-y-2">
26
26
  <li>
27
- <pre><%= ERB::Util.h %q|-evalue <Real>
27
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-evalue <Real>
28
28
  Expectation value (E) threshold for saving hits
29
29
  Default = '10'| %></pre>
30
30
  </li>
31
31
  <li>
32
- <pre><%= ERB::Util.h %q|-word_size <Integer, >=2>
32
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-word_size <Integer, >=2>
33
33
  Word size for wordfinder algorithm| %></pre>
34
34
  </li>
35
35
  <li>
36
- <pre><%= ERB::Util.h %q|-max_intron_length <Integer, >=0>
37
- Length of the largest intron allowed in a translated nucleotide sequence when
38
- linking multiple distinct alignments
36
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-max_intron_length <Integer, >=0>
37
+ Length of the largest intron allowed in a translated nucleotide sequence when
38
+ linking multiple distinct alignments
39
39
  Default = '0'| %></pre>
40
40
  </li>
41
41
  <li>
42
- <pre><%= ERB::Util.h %q|-matrix <String>
42
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-matrix <String>
43
43
  Scoring matrix name (normally BLOSUM62)| %></pre>
44
44
  </li>
45
45
  <li>
46
- <pre><%= ERB::Util.h %q|-threshold <Real, >=0>
46
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-threshold <Real, >=0>
47
47
  Minimum word score such that the word is added to the BLAST lookup table| %></pre>
48
48
  </li>
49
49
  <li>
50
- <pre><%= ERB::Util.h %q|-db_gencode <Integer, values between: 1-6, 9-16, 21-31, 33>
50
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-db_gencode <Integer, values between: 1-6, 9-16, 21-31, 33>
51
51
  Genetic code to use to translate database/subjects (see user manual for details)
52
52
  Default = '1' | %></pre>
53
53
  </li>
54
54
  </ul>
55
55
  <br />
56
56
 
57
- <h5>Formatting Options</h5>
58
- <ul class="list-unstyled">
57
+ <h5 class="text-lg py-4 font-medium">Formatting Options</h5>
58
+ <ul class="list-unstyled space-y-2">
59
59
  <li>
60
- <pre><%= ERB::Util.h %q|-show_gis
60
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-show_gis
61
61
  Show NCBI GIs in deflines?| %></pre>
62
62
  </li>
63
63
  <li>
64
- <pre><%= ERB::Util.h %q|-num_descriptions <Integer, >=0>
64
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-num_descriptions <Integer, >=0>
65
65
  Number of database sequences to show one-line descriptions for
66
66
  Not applicable for outfmt > 4
67
67
  Default = '500'
68
68
  * Incompatible with: max_target_seqs| %></pre>
69
69
  </li>
70
70
  <li>
71
- <pre><%= ERB::Util.h %q| -num_alignments <Integer, >=0>
71
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q| -num_alignments <Integer, >=0>
72
72
  Number of database sequences to show alignments for
73
73
  Default = '250'
74
74
  * Incompatible with: max_target_seqs| %></pre>
75
75
  </li>
76
76
  <li>
77
- <pre><%= ERB::Util.h %q| -sorthits <Integer, (>=0 and =<4)>
77
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q| -sorthits <Integer, (>=0 and =<4)>
78
78
  Sorting option for hits:
79
79
  alignment view options:
80
80
  0 = Sort by evalue,
@@ -85,7 +85,7 @@
85
85
  Not applicable for outfmt > 4| %></pre>
86
86
  </li>
87
87
  <li>
88
- <pre><%= ERB::Util.h %q| -sorthsps <Integer, (>=0 and =<4)>
88
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q| -sorthsps <Integer, (>=0 and =<4)>
89
89
  Sorting option for hps:
90
90
  0 = Sort by hsp evalue,
91
91
  1 = Sort by hsp score,
@@ -98,52 +98,52 @@
98
98
 
99
99
  <br/>
100
100
 
101
- <h5>Query filtering options</h5>
102
- <ul class="list-unstyled">
101
+ <h5 class="text-lg py-4 font-medium">Query filtering options</h5>
102
+ <ul class="list-unstyled space-y-2">
103
103
  <li>
104
- <pre><%= ERB::Util.h %q|-seg <String>
104
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-seg <String>
105
105
  Filter query sequence with SEG (Format: 'yes', 'window locut hicut',
106
106
  or 'no' to disable)
107
107
  Default = '12 2.2 2.5'| %></pre>
108
108
  </li>
109
109
  <li>
110
- <pre><%= ERB::Util.h %q|-soft_masking <Boolean>
110
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-soft_masking <Boolean>
111
111
  Apply filtering locations as soft masks
112
112
  Default ='false'| %></pre>
113
113
  </li>
114
114
  <li>
115
- <pre><%= ERB::Util.h %q|-lcase_masking
115
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-lcase_masking
116
116
  Use lower case filtering in query and subject sequence(s)?| %></pre>
117
117
  </li>
118
118
  </ul>
119
119
 
120
120
  <br/>
121
121
 
122
- <h5>Restrict search or results</h5>
123
- <ul class="list-unstyled">
122
+ <h5 class="text-lg py-4 font-medium">Restrict search or results</h5>
123
+ <ul class="list-unstyled space-y-2">
124
124
  <li>
125
- <pre><%= ERB::Util.h %q|-gilist <String>
125
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-gilist <String>
126
126
  Restrict search of database to list of GIs
127
127
  * Incompatible with: seqidlist, taxids, taxidlist, negative_gilist,
128
128
  negative_seqidlist, negative_taxids, negative_taxidlist, remote, subject,
129
129
  subject_loc| %></pre>
130
130
  </li>
131
131
  <li>
132
- <pre><%= ERB::Util.h %q|-seqidlist <String>
132
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-seqidlist <String>
133
133
  Restrict search of database to list of SeqIDs
134
134
  * Incompatible with: gilist, taxids, taxidlist, negative_gilist,
135
135
  negative_seqidlist, negative_taxids, negative_taxidlist, remote, subject,
136
136
  subject_loc| %></pre>
137
137
  </li>
138
138
  <li>
139
- <pre><%= ERB::Util.h %q|-negative_gilist <String>
139
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-negative_gilist <String>
140
140
  Restrict search of database to everything except the specified GIs
141
141
  * Incompatible with: gilist, seqidlist, taxids, taxidlist,
142
142
  negative_seqidlist, negative_taxids, negative_taxidlist, remote, subject,
143
143
  subject_loc| %></pre>
144
144
  </li>
145
145
  <li>
146
- <pre><%= ERB::Util.h %q|-negative_seqidlist <String>
146
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-negative_seqidlist <String>
147
147
  Restrict search of database to everything except the specified SeqIDs
148
148
  * Incompatible with: gilist, seqidlist, taxids, taxidlist,
149
149
  negative_gilist, negative_taxids, negative_taxidlist, remote, subject,
@@ -151,78 +151,78 @@
151
151
  </li>
152
152
  <li>
153
153
  <li>
154
- <pre><%= ERB::Util.h %q|-taxids <String>
154
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-taxids <String>
155
155
  Restrict search of database to include only the specified taxonomy IDs (multiple IDs delimited by ',')
156
156
  * Incompatible with: gilist, seqidlist, taxidlist, negative_gilist,
157
157
  negative_seqidlist, negative_taxids, negative_taxidlist, remote, subject,
158
158
  subject_loc| %></pre>
159
159
  </li>
160
160
  <li>
161
- <pre><%= ERB::Util.h %q|-negative_taxids <String>
161
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-negative_taxids <String>
162
162
  Restrict search of database to everything except the specified taxonomy IDs (multiple IDs delimited by ',')
163
163
  * Incompatible with: gilist, seqidlist, taxids, taxidlist,
164
164
  negative_gilist, negative_seqidlist, negative_taxidlist, remote, subject,
165
165
  subject_loc| %></pre>
166
166
  </li>
167
167
  <li>
168
- <pre><%= ERB::Util.h %q|-taxidlist <String>
168
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-taxidlist <String>
169
169
  Restrict search of database to include only the specified taxonomy IDs
170
170
  * Incompatible with: gilist, seqidlist, taxids, negative_gilist,
171
171
  negative_seqidlist, negative_taxids, negative_taxidlist, remote, subject,
172
172
  subject_loc| %></pre>
173
173
  </li>
174
174
  <li>
175
- <pre><%= ERB::Util.h %q|-negative_taxidlist <String>
175
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-negative_taxidlist <String>
176
176
  Restrict search of database to everything except the specified taxonomy IDs
177
177
  * Incompatible with: gilist, seqidlist, taxids, taxidlist,
178
178
  negative_gilist, negative_seqidlist, negative_taxids, remote, subject,
179
179
  subject_loc| %></pre>
180
180
  </li>
181
181
  <li>
182
- <pre><%= ERB::Util.h %q|-entrez_query <String>
182
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-entrez_query <String>
183
183
  Restrict search with the given Entrez query
184
184
  * Requires: remote| %></pre>
185
185
  </li>
186
186
  <li>
187
- <pre><%= ERB::Util.h %q|-db_soft_mask <String>
187
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-db_soft_mask <String>
188
188
  Filtering algorithm ID to apply to the BLAST database as soft masking
189
189
  * Incompatible with: db_hard_mask, subject, subject_loc| %></pre>
190
190
  </li>
191
191
  <li>
192
- <pre><%= ERB::Util.h %q|-db_hard_mask <String>
192
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-db_hard_mask <String>
193
193
  Filtering algorithm ID to apply to the BLAST database as hard masking
194
194
  * Incompatible with: db_soft_mask, subject, subject_loc| %></pre>
195
195
  </li>
196
196
  <li>
197
- <pre><%= ERB::Util.h %q|-qcov_hsp_perc <Real, 0..100>
197
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-qcov_hsp_perc <Real, 0..100>
198
198
  Percent query coverage per hsp| %></pre>
199
199
  </li>
200
200
  <li>
201
- <pre><%= ERB::Util.h %q|-max_hsps <Integer, >=1>
201
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-max_hsps <Integer, >=1>
202
202
  Set maximum number of HSPs per subject sequence to save for each query| %></pre>
203
203
  </li>
204
204
  <li>
205
- <pre><%= ERB::Util.h %q|-culling_limit <Integer, >=0>
205
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-culling_limit <Integer, >=0>
206
206
  If the query range of a hit is enveloped by that of at least this
207
207
  many higher-scoring hits, delete the hit
208
208
  * Incompatible with: best_hit_overhang, best_hit_score_edge| %></pre>
209
209
  </li>
210
210
  <li>
211
- <pre><%= ERB::Util.h %q|-best_hit_overhang <Real, (>0 and <0.5)>
211
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-best_hit_overhang <Real, (>0 and <0.5)>
212
212
  Best Hit algorithm overhang value (recommended value: 0.1)
213
213
  * Incompatible with: culling_limit| %></pre>
214
214
  </li>
215
215
  <li>
216
- <pre><%= ERB::Util.h %q|-best_hit_score_edge <Real, (>0 and <0.5)>
216
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-best_hit_score_edge <Real, (>0 and <0.5)>
217
217
  Best Hit algorithm score edge value (recommended value: 0.1)
218
218
  * Incompatible with: culling_limit| %></pre>
219
219
  </li>
220
220
  <li>
221
- <pre><%= ERB::Util.h %q|-subject_besthit
221
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-subject_besthit
222
222
  Turn on best hit per subject sequence| %></pre>
223
223
  </li>
224
224
  <li>
225
- <pre><%= ERB::Util.h %q|-max_target_seqs <Integer, >=1>
225
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-max_target_seqs <Integer, >=1>
226
226
  Maximum number of aligned sequences to keep (value of 5 or more is recommended)
227
227
  Default = '500'
228
228
  * Incompatible with: num_descriptions, num_alignments| %></pre>
@@ -231,61 +231,61 @@
231
231
 
232
232
  <br/>
233
233
 
234
- <h5>Statistical options</h5>
235
- <ul class="list-unstyled">
234
+ <h5 class="text-lg py-4 font-medium">Statistical options</h5>
235
+ <ul class="list-unstyled space-y-2">
236
236
  <li>
237
- <pre><%= ERB::Util.h %q|-dbsize <Int8>
237
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-dbsize <Int8>
238
238
  Effective length of the database| %></pre>
239
239
  </li>
240
240
  <li>
241
- <pre><%= ERB::Util.h %q|-searchsp <Int8, >=0>
241
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-searchsp <Int8, >=0>
242
242
  Effective length of the search space| %></pre>
243
243
  </li>
244
244
  <li>
245
- <pre><%= ERB::Util.h %q|-sum_stats <Boolean>
245
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-sum_stats <Boolean>
246
246
  Use sum statistics| %></pre>
247
247
  </li>
248
248
  </ul>
249
249
 
250
250
  <br/>
251
251
 
252
- <h5>Search Strategy options</h5>
253
- <ul class="list-unstyled">
252
+ <h5 class="text-lg py-4 font-medium">Search Strategy options</h5>
253
+ <ul class="list-unstyled space-y-2">
254
254
  <li>
255
- <pre><%= ERB::Util.h %q|-import_search_strategy <File_In>
255
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-import_search_strategy <File_In>
256
256
  Search strategy to use
257
257
  * Incompatible with: export_search_strategy| %></pre>
258
258
  </li>
259
259
  <li>
260
- <pre><%= ERB::Util.h %q|-export_search_strategy <File_Out>
260
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-export_search_strategy <File_Out>
261
261
  File name to record the search strategy used
262
262
  * Incompatible with: import_search_strategy| %></pre>
263
263
  </li>
264
264
  <li>
265
- <pre><%= ERB::Util.h %q|-sum_stats <Boolean>
265
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-sum_stats <Boolean>
266
266
  Use sum statistics| %></pre>
267
267
  </li>
268
268
  </ul>
269
269
 
270
270
  <br/>
271
271
 
272
- <h5>Extension options</h5>
273
- <ul class="list-unstyled">
272
+ <h5 class="text-lg py-4 font-medium">Extension options</h5>
273
+ <ul class="list-unstyled space-y-2">
274
274
  <li>
275
- <pre><%= ERB::Util.h %q|-xdrop_ungap <Real>
275
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-xdrop_ungap <Real>
276
276
  X-dropoff value (in bits) for ungapped extensions| %></pre>
277
277
  </li>
278
278
  <li>
279
- <pre><%= ERB::Util.h %q|-window_size <Integer, >=0>
279
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-window_size <Integer, >=0>
280
280
  Multiple hits window size, use 0 to specify 1-hit algorithm| %></pre>
281
281
  </li>
282
-
282
+
283
283
  </ul>
284
284
  <br />
285
- <h5>Miscellaneous options</h5>
286
- <ul class="list-unstyled">
285
+ <h5 class="text-lg py-4 font-medium">Miscellaneous options</h5>
286
+ <ul class="list-unstyled space-y-2">
287
287
  <li>
288
- <pre><%= ERB::Util.h %q|-parse_deflines <Real>
288
+ <pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-parse_deflines <Real>
289
289
  Should the query and subject defline(s) be parsed?| %></pre>
290
290
  </li>
291
291
  </ul>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sequenceserver
3
3
  version: !ruby/object:Gem::Version
4
- version: '3.0'
4
+ version: 3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Queen Mary University of London
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-02-13 00:00:00.000000000 Z
12
+ date: 2024-06-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json_pure
@@ -165,20 +165,20 @@ dependencies:
165
165
  requirements:
166
166
  - - "~>"
167
167
  - !ruby/object:Gem::Version
168
- version: '3.15'
168
+ version: '3.40'
169
169
  - - ">="
170
170
  - !ruby/object:Gem::Version
171
- version: 3.15.1
171
+ version: 3.40.0
172
172
  type: :development
173
173
  prerelease: false
174
174
  version_requirements: !ruby/object:Gem::Requirement
175
175
  requirements:
176
176
  - - "~>"
177
177
  - !ruby/object:Gem::Version
178
- version: '3.15'
178
+ version: '3.40'
179
179
  - - ">="
180
180
  - !ruby/object:Gem::Version
181
- version: 3.15.1
181
+ version: 3.40.0
182
182
  - !ruby/object:Gem::Dependency
183
183
  name: capybara-screenshot
184
184
  requirement: !ruby/object:Gem::Requirement
@@ -233,20 +233,20 @@ dependencies:
233
233
  requirements:
234
234
  - - "~>"
235
235
  - !ruby/object:Gem::Version
236
- version: '3.7'
236
+ version: '3.13'
237
237
  - - ">="
238
238
  - !ruby/object:Gem::Version
239
- version: 3.7.0
239
+ version: 3.13.0
240
240
  type: :development
241
241
  prerelease: false
242
242
  version_requirements: !ruby/object:Gem::Requirement
243
243
  requirements:
244
244
  - - "~>"
245
245
  - !ruby/object:Gem::Version
246
- version: '3.7'
246
+ version: '3.13'
247
247
  - - ">="
248
248
  - !ruby/object:Gem::Version
249
- version: 3.7.0
249
+ version: 3.13.0
250
250
  - !ruby/object:Gem::Dependency
251
251
  name: rubocop
252
252
  requirement: !ruby/object:Gem::Requirement
@@ -273,40 +273,40 @@ dependencies:
273
273
  requirements:
274
274
  - - "~>"
275
275
  - !ruby/object:Gem::Version
276
- version: 4.15.0
276
+ version: 4.18.0
277
277
  - - ">="
278
278
  - !ruby/object:Gem::Version
279
- version: 4.15.0
279
+ version: 4.18.1
280
280
  type: :development
281
281
  prerelease: false
282
282
  version_requirements: !ruby/object:Gem::Requirement
283
283
  requirements:
284
284
  - - "~>"
285
285
  - !ruby/object:Gem::Version
286
- version: 4.15.0
286
+ version: 4.18.0
287
287
  - - ">="
288
288
  - !ruby/object:Gem::Version
289
- version: 4.15.0
289
+ version: 4.18.1
290
290
  - !ruby/object:Gem::Dependency
291
291
  name: simplecov
292
292
  requirement: !ruby/object:Gem::Requirement
293
293
  requirements:
294
294
  - - "~>"
295
295
  - !ruby/object:Gem::Version
296
- version: 0.17.0
296
+ version: 0.22.0
297
297
  - - ">="
298
298
  - !ruby/object:Gem::Version
299
- version: 0.17.0
299
+ version: 0.22.0
300
300
  type: :development
301
301
  prerelease: false
302
302
  version_requirements: !ruby/object:Gem::Requirement
303
303
  requirements:
304
304
  - - "~>"
305
305
  - !ruby/object:Gem::Version
306
- version: 0.17.0
306
+ version: 0.22.0
307
307
  - - ">="
308
308
  - !ruby/object:Gem::Version
309
- version: 0.17.0
309
+ version: 0.22.0
310
310
  description: |
311
311
  SequenceServer lets you rapidly set up a BLAST+ server with an intuitive
312
312
  user interface for use locally or over the web.
@@ -331,6 +331,7 @@ files:
331
331
  - lib/sequenceserver/blast/job.rb
332
332
  - lib/sequenceserver/blast/query.rb
333
333
  - lib/sequenceserver/blast/report.rb
334
+ - lib/sequenceserver/blast/tasks.rb
334
335
  - lib/sequenceserver/config.rb
335
336
  - lib/sequenceserver/database.rb
336
337
  - lib/sequenceserver/doctor.rb
@@ -339,7 +340,6 @@ files:
339
340
  - lib/sequenceserver/job_remover.rb
340
341
  - lib/sequenceserver/links.rb
341
342
  - lib/sequenceserver/logger.rb
342
- - lib/sequenceserver/makeblastdb-modified-with-cache.rb
343
343
  - lib/sequenceserver/makeblastdb.rb
344
344
  - lib/sequenceserver/pool.rb
345
345
  - lib/sequenceserver/refinements.rb
@@ -351,8 +351,9 @@ files:
351
351
  - lib/sequenceserver/version.rb
352
352
  - lib/sequenceserver/zip_file_generator.rb
353
353
  - public/404.html
354
- - public/SequenceServer_logo.png
355
354
  - public/config.js
355
+ - public/css/app.css
356
+ - public/css/app.min.css
356
357
  - public/css/fonts.css
357
358
  - public/css/grapher.css
358
359
  - public/css/sequenceserver.css
@@ -376,6 +377,7 @@ files:
376
377
  - public/js/alignment_exporter.js
377
378
  - public/js/circos.js
378
379
  - public/js/cloud_share_modal.js
380
+ - public/js/collapse_preferences.js
379
381
  - public/js/databases.js
380
382
  - public/js/databases_tree.js
381
383
  - public/js/dnd.js
@@ -394,8 +396,12 @@ files:
394
396
  - public/js/length_distribution.js
395
397
  - public/js/mailto.js
396
398
  - public/js/null_plugins/download_links.js
399
+ - public/js/null_plugins/grapher/histogram.js
397
400
  - public/js/null_plugins/hit_buttons.js
401
+ - public/js/null_plugins/options.js
402
+ - public/js/null_plugins/query_stats.js
398
403
  - public/js/null_plugins/report_plugins.js
404
+ - public/js/null_plugins/search_header_plugin.js
399
405
  - public/js/options.js
400
406
  - public/js/query.js
401
407
  - public/js/report.js
@@ -407,12 +413,13 @@ files:
407
413
  - public/js/share_url.js
408
414
  - public/js/sidebar.js
409
415
  - public/js/svgExporter.js
410
- - public/js/tests/advanced_parameters.spec.js
411
416
  - public/js/tests/database.spec.js
417
+ - public/js/tests/form.spec.js
412
418
  - public/js/tests/mock_data/databases.json
413
419
  - public/js/tests/mock_data/long_response.json
414
420
  - public/js/tests/mock_data/sequences.js
415
421
  - public/js/tests/mock_data/short_response.json
422
+ - public/js/tests/mocks/circos.js
416
423
  - public/js/tests/report.spec.js
417
424
  - public/js/tests/search_button.spec.js
418
425
  - public/js/tests/search_query.spec.js
@@ -422,6 +429,7 @@ files:
422
429
  - public/packages/jquery-ui@1.11.4.js
423
430
  - public/sequenceserver-report.min.js
424
431
  - public/sequenceserver-search.min.js
432
+ - public/sequenceserver_logo.webp
425
433
  - public/vendor/github/components/jquery@2.1.4.js
426
434
  - public/vendor/github/components/jquery@2.1.4/README.md
427
435
  - public/vendor/github/components/jquery@2.1.4/bower.json
@@ -3496,6 +3504,7 @@ files:
3496
3504
  - views/layout.erb
3497
3505
  - views/report.erb
3498
3506
  - views/search.erb
3507
+ - views/search_layout.erb
3499
3508
  - views/tblastn_options.erb
3500
3509
  - views/tblastx_options.erb
3501
3510
  homepage: https://sequenceserver.com
@@ -3530,7 +3539,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
3530
3539
  - !ruby/object:Gem::Version
3531
3540
  version: '0'
3532
3541
  requirements: []
3533
- rubygems_version: 3.4.10
3542
+ rubygems_version: 3.5.6
3534
3543
  signing_key:
3535
3544
  specification_version: 4
3536
3545
  summary: BLAST search made easy!