sequenceserver 3.0.1 → 3.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +4 -4
  2. data/bin/sequenceserver +2 -2
  3. data/lib/sequenceserver/api_errors.rb +56 -2
  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/blast.rb +6 -0
  8. data/lib/sequenceserver/config.rb +54 -20
  9. data/lib/sequenceserver/database.rb +13 -0
  10. data/lib/sequenceserver/makeblastdb.rb +16 -2
  11. data/lib/sequenceserver/report.rb +0 -6
  12. data/lib/sequenceserver/routes.rb +66 -25
  13. data/lib/sequenceserver/sequence.rb +34 -7
  14. data/lib/sequenceserver/server.rb +1 -1
  15. data/lib/sequenceserver/version.rb +1 -1
  16. data/lib/sequenceserver.rb +1 -1
  17. data/public/404.html +1 -1
  18. data/public/css/app.css +121 -0
  19. data/public/css/app.min.css +1 -0
  20. data/public/css/sequenceserver.css +0 -148
  21. data/public/css/sequenceserver.min.css +3 -3
  22. data/public/js/circos.js +2 -2
  23. data/public/js/collapse_preferences.js +37 -0
  24. data/public/js/databases.js +65 -37
  25. data/public/js/databases_tree.js +2 -1
  26. data/public/js/dnd.js +37 -50
  27. data/public/js/download_fasta.js +1 -0
  28. data/public/js/form.js +79 -50
  29. data/public/js/grapher.js +23 -37
  30. data/public/js/hits_overview.js +2 -2
  31. data/public/js/kablammo.js +2 -2
  32. data/public/js/length_distribution.js +3 -3
  33. data/public/js/null_plugins/grapher/histogram.js +25 -0
  34. data/public/js/null_plugins/options.js +3 -0
  35. data/public/js/null_plugins/query_stats.js +11 -0
  36. data/public/js/null_plugins/report_plugins.js +6 -1
  37. data/public/js/null_plugins/search_header_plugin.js +4 -0
  38. data/public/js/options.js +161 -56
  39. data/public/js/query.js +85 -59
  40. data/public/js/report.js +1 -1
  41. data/public/js/search.js +2 -0
  42. data/public/js/search_button.js +67 -56
  43. data/public/js/sidebar.js +10 -1
  44. data/public/js/tests/database.spec.js +5 -5
  45. data/public/js/tests/form.spec.js +98 -0
  46. data/public/js/tests/mock_data/databases.json +5 -5
  47. data/public/js/tests/mocks/circos.js +6 -0
  48. data/public/js/tests/report.spec.js +4 -3
  49. data/public/js/tests/search_query.spec.js +16 -6
  50. data/public/sequenceserver-report.min.js +46 -24
  51. data/public/sequenceserver-search.min.js +57 -13
  52. data/public/sequenceserver_logo.webp +0 -0
  53. data/views/blastn_options.erb +66 -66
  54. data/views/blastp_options.erb +59 -59
  55. data/views/blastx_options.erb +68 -68
  56. data/views/layout.erb +61 -3
  57. data/views/search.erb +33 -38
  58. data/views/search_layout.erb +153 -0
  59. data/views/tblastn_options.erb +57 -57
  60. data/views/tblastx_options.erb +64 -64
  61. metadata +51 -22
  62. data/lib/sequenceserver/makeblastdb-modified-with-cache.rb +0 -345
  63. data/public/SequenceServer_logo.png +0 -0
  64. data/public/js/tests/advanced_parameters.spec.js +0 -36
@@ -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.1
4
+ version: 3.1.2
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-07-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json_pure
@@ -51,6 +51,26 @@ dependencies:
51
51
  - - ">="
52
52
  - !ruby/object:Gem::Version
53
53
  version: 2.1.1
54
+ - !ruby/object:Gem::Dependency
55
+ name: rack_csrf
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '2.7'
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: 2.7.0
64
+ type: :runtime
65
+ prerelease: false
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - "~>"
69
+ - !ruby/object:Gem::Version
70
+ version: '2.7'
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: 2.7.0
54
74
  - !ruby/object:Gem::Dependency
55
75
  name: rackup
56
76
  requirement: !ruby/object:Gem::Requirement
@@ -165,20 +185,20 @@ dependencies:
165
185
  requirements:
166
186
  - - "~>"
167
187
  - !ruby/object:Gem::Version
168
- version: '3.15'
188
+ version: '3.40'
169
189
  - - ">="
170
190
  - !ruby/object:Gem::Version
171
- version: 3.15.1
191
+ version: 3.40.0
172
192
  type: :development
173
193
  prerelease: false
174
194
  version_requirements: !ruby/object:Gem::Requirement
175
195
  requirements:
176
196
  - - "~>"
177
197
  - !ruby/object:Gem::Version
178
- version: '3.15'
198
+ version: '3.40'
179
199
  - - ">="
180
200
  - !ruby/object:Gem::Version
181
- version: 3.15.1
201
+ version: 3.40.0
182
202
  - !ruby/object:Gem::Dependency
183
203
  name: capybara-screenshot
184
204
  requirement: !ruby/object:Gem::Requirement
@@ -233,20 +253,20 @@ dependencies:
233
253
  requirements:
234
254
  - - "~>"
235
255
  - !ruby/object:Gem::Version
236
- version: '3.7'
256
+ version: '3.13'
237
257
  - - ">="
238
258
  - !ruby/object:Gem::Version
239
- version: 3.7.0
259
+ version: 3.13.0
240
260
  type: :development
241
261
  prerelease: false
242
262
  version_requirements: !ruby/object:Gem::Requirement
243
263
  requirements:
244
264
  - - "~>"
245
265
  - !ruby/object:Gem::Version
246
- version: '3.7'
266
+ version: '3.13'
247
267
  - - ">="
248
268
  - !ruby/object:Gem::Version
249
- version: 3.7.0
269
+ version: 3.13.0
250
270
  - !ruby/object:Gem::Dependency
251
271
  name: rubocop
252
272
  requirement: !ruby/object:Gem::Requirement
@@ -273,40 +293,40 @@ dependencies:
273
293
  requirements:
274
294
  - - "~>"
275
295
  - !ruby/object:Gem::Version
276
- version: 4.15.0
296
+ version: 4.18.0
277
297
  - - ">="
278
298
  - !ruby/object:Gem::Version
279
- version: 4.15.0
299
+ version: 4.18.1
280
300
  type: :development
281
301
  prerelease: false
282
302
  version_requirements: !ruby/object:Gem::Requirement
283
303
  requirements:
284
304
  - - "~>"
285
305
  - !ruby/object:Gem::Version
286
- version: 4.15.0
306
+ version: 4.18.0
287
307
  - - ">="
288
308
  - !ruby/object:Gem::Version
289
- version: 4.15.0
309
+ version: 4.18.1
290
310
  - !ruby/object:Gem::Dependency
291
311
  name: simplecov
292
312
  requirement: !ruby/object:Gem::Requirement
293
313
  requirements:
294
314
  - - "~>"
295
315
  - !ruby/object:Gem::Version
296
- version: 0.17.0
316
+ version: 0.22.0
297
317
  - - ">="
298
318
  - !ruby/object:Gem::Version
299
- version: 0.17.0
319
+ version: 0.22.0
300
320
  type: :development
301
321
  prerelease: false
302
322
  version_requirements: !ruby/object:Gem::Requirement
303
323
  requirements:
304
324
  - - "~>"
305
325
  - !ruby/object:Gem::Version
306
- version: 0.17.0
326
+ version: 0.22.0
307
327
  - - ">="
308
328
  - !ruby/object:Gem::Version
309
- version: 0.17.0
329
+ version: 0.22.0
310
330
  description: |
311
331
  SequenceServer lets you rapidly set up a BLAST+ server with an intuitive
312
332
  user interface for use locally or over the web.
@@ -331,6 +351,7 @@ files:
331
351
  - lib/sequenceserver/blast/job.rb
332
352
  - lib/sequenceserver/blast/query.rb
333
353
  - lib/sequenceserver/blast/report.rb
354
+ - lib/sequenceserver/blast/tasks.rb
334
355
  - lib/sequenceserver/config.rb
335
356
  - lib/sequenceserver/database.rb
336
357
  - lib/sequenceserver/doctor.rb
@@ -339,7 +360,6 @@ files:
339
360
  - lib/sequenceserver/job_remover.rb
340
361
  - lib/sequenceserver/links.rb
341
362
  - lib/sequenceserver/logger.rb
342
- - lib/sequenceserver/makeblastdb-modified-with-cache.rb
343
363
  - lib/sequenceserver/makeblastdb.rb
344
364
  - lib/sequenceserver/pool.rb
345
365
  - lib/sequenceserver/refinements.rb
@@ -351,8 +371,9 @@ files:
351
371
  - lib/sequenceserver/version.rb
352
372
  - lib/sequenceserver/zip_file_generator.rb
353
373
  - public/404.html
354
- - public/SequenceServer_logo.png
355
374
  - public/config.js
375
+ - public/css/app.css
376
+ - public/css/app.min.css
356
377
  - public/css/fonts.css
357
378
  - public/css/grapher.css
358
379
  - public/css/sequenceserver.css
@@ -376,6 +397,7 @@ files:
376
397
  - public/js/alignment_exporter.js
377
398
  - public/js/circos.js
378
399
  - public/js/cloud_share_modal.js
400
+ - public/js/collapse_preferences.js
379
401
  - public/js/databases.js
380
402
  - public/js/databases_tree.js
381
403
  - public/js/dnd.js
@@ -394,8 +416,12 @@ files:
394
416
  - public/js/length_distribution.js
395
417
  - public/js/mailto.js
396
418
  - public/js/null_plugins/download_links.js
419
+ - public/js/null_plugins/grapher/histogram.js
397
420
  - public/js/null_plugins/hit_buttons.js
421
+ - public/js/null_plugins/options.js
422
+ - public/js/null_plugins/query_stats.js
398
423
  - public/js/null_plugins/report_plugins.js
424
+ - public/js/null_plugins/search_header_plugin.js
399
425
  - public/js/options.js
400
426
  - public/js/query.js
401
427
  - public/js/report.js
@@ -407,12 +433,13 @@ files:
407
433
  - public/js/share_url.js
408
434
  - public/js/sidebar.js
409
435
  - public/js/svgExporter.js
410
- - public/js/tests/advanced_parameters.spec.js
411
436
  - public/js/tests/database.spec.js
437
+ - public/js/tests/form.spec.js
412
438
  - public/js/tests/mock_data/databases.json
413
439
  - public/js/tests/mock_data/long_response.json
414
440
  - public/js/tests/mock_data/sequences.js
415
441
  - public/js/tests/mock_data/short_response.json
442
+ - public/js/tests/mocks/circos.js
416
443
  - public/js/tests/report.spec.js
417
444
  - public/js/tests/search_button.spec.js
418
445
  - public/js/tests/search_query.spec.js
@@ -422,6 +449,7 @@ files:
422
449
  - public/packages/jquery-ui@1.11.4.js
423
450
  - public/sequenceserver-report.min.js
424
451
  - public/sequenceserver-search.min.js
452
+ - public/sequenceserver_logo.webp
425
453
  - public/vendor/github/components/jquery@2.1.4.js
426
454
  - public/vendor/github/components/jquery@2.1.4/README.md
427
455
  - public/vendor/github/components/jquery@2.1.4/bower.json
@@ -3496,6 +3524,7 @@ files:
3496
3524
  - views/layout.erb
3497
3525
  - views/report.erb
3498
3526
  - views/search.erb
3527
+ - views/search_layout.erb
3499
3528
  - views/tblastn_options.erb
3500
3529
  - views/tblastx_options.erb
3501
3530
  homepage: https://sequenceserver.com
@@ -3530,7 +3559,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
3530
3559
  - !ruby/object:Gem::Version
3531
3560
  version: '0'
3532
3561
  requirements: []
3533
- rubygems_version: 3.4.10
3562
+ rubygems_version: 3.5.14
3534
3563
  signing_key:
3535
3564
  specification_version: 4
3536
3565
  summary: BLAST search made easy!