sequenceserver 3.0.1 → 3.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/sequenceserver +2 -2
- data/lib/sequenceserver/api_errors.rb +56 -2
- data/lib/sequenceserver/blast/job.rb +20 -3
- data/lib/sequenceserver/blast/report.rb +74 -86
- data/lib/sequenceserver/blast/tasks.rb +38 -0
- data/lib/sequenceserver/blast.rb +6 -0
- data/lib/sequenceserver/config.rb +54 -20
- data/lib/sequenceserver/database.rb +13 -0
- data/lib/sequenceserver/makeblastdb.rb +16 -2
- data/lib/sequenceserver/report.rb +0 -6
- data/lib/sequenceserver/routes.rb +66 -25
- data/lib/sequenceserver/sequence.rb +34 -7
- data/lib/sequenceserver/server.rb +1 -1
- data/lib/sequenceserver/version.rb +1 -1
- data/lib/sequenceserver.rb +1 -1
- data/public/404.html +1 -1
- data/public/css/app.css +121 -0
- data/public/css/app.min.css +1 -0
- data/public/css/sequenceserver.css +0 -148
- data/public/css/sequenceserver.min.css +3 -3
- data/public/js/circos.js +2 -2
- data/public/js/collapse_preferences.js +37 -0
- data/public/js/databases.js +65 -37
- data/public/js/databases_tree.js +2 -1
- data/public/js/dnd.js +37 -50
- data/public/js/download_fasta.js +1 -0
- data/public/js/form.js +79 -50
- data/public/js/grapher.js +23 -37
- data/public/js/hits_overview.js +2 -2
- data/public/js/kablammo.js +2 -2
- data/public/js/length_distribution.js +3 -3
- data/public/js/null_plugins/grapher/histogram.js +25 -0
- data/public/js/null_plugins/options.js +3 -0
- data/public/js/null_plugins/query_stats.js +11 -0
- data/public/js/null_plugins/report_plugins.js +6 -1
- data/public/js/null_plugins/search_header_plugin.js +4 -0
- data/public/js/options.js +161 -56
- data/public/js/query.js +85 -59
- data/public/js/report.js +1 -1
- data/public/js/search.js +2 -0
- data/public/js/search_button.js +67 -56
- data/public/js/sidebar.js +10 -1
- data/public/js/tests/database.spec.js +5 -5
- data/public/js/tests/form.spec.js +98 -0
- data/public/js/tests/mock_data/databases.json +5 -5
- data/public/js/tests/mocks/circos.js +6 -0
- data/public/js/tests/report.spec.js +4 -3
- data/public/js/tests/search_query.spec.js +16 -6
- data/public/sequenceserver-report.min.js +46 -24
- data/public/sequenceserver-search.min.js +57 -13
- data/public/sequenceserver_logo.webp +0 -0
- data/views/blastn_options.erb +66 -66
- data/views/blastp_options.erb +59 -59
- data/views/blastx_options.erb +68 -68
- data/views/layout.erb +61 -3
- data/views/search.erb +33 -38
- data/views/search_layout.erb +153 -0
- data/views/tblastn_options.erb +57 -57
- data/views/tblastx_options.erb +64 -64
- metadata +51 -22
- data/lib/sequenceserver/makeblastdb-modified-with-cache.rb +0 -345
- data/public/SequenceServer_logo.png +0 -0
- data/public/js/tests/advanced_parameters.spec.js +0 -36
Binary file
|
data/views/blastn_options.erb
CHANGED
@@ -4,67 +4,67 @@
|
|
4
4
|
characters per line to preserve formatting.
|
5
5
|
%>
|
6
6
|
|
7
|
-
<h5>General Search Options</h5>
|
8
|
-
<ul class="list-unstyled">
|
7
|
+
<h5 class="text-lg py-4 font-medium">General Search Options</h5>
|
8
|
+
<ul class="list-unstyled space-y-2">
|
9
9
|
<li>
|
10
|
-
<pre><%= ERB::Util.h %q|-task <String, Permissible values: 'blastn' 'blastn-short' 'dc-megablast' 'megablast' 'rmblastn'>
|
10
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-task <String, Permissible values: 'blastn' 'blastn-short' 'dc-megablast' 'megablast' 'rmblastn'>
|
11
11
|
Task to execute
|
12
12
|
Default = 'megablast'|%></pre>
|
13
13
|
</li>
|
14
14
|
<li>
|
15
|
-
<pre><%= ERB::Util.h %q|-evalue <Real>
|
15
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-evalue <Real>
|
16
16
|
Expectation value (E) threshold for saving hits
|
17
17
|
Default = '10' (1000 for blastn-short)| %></pre>
|
18
18
|
</li>
|
19
19
|
<li>
|
20
|
-
<pre><%= ERB::Util.h %q|-word_size <Integer, >=2>
|
20
|
+
<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>
|
21
21
|
Word size for wordfinder algorithm (length of best perfect match)| %></pre>
|
22
22
|
</li>
|
23
23
|
<li>
|
24
|
-
<pre><%= ERB::Util.h %q|-gapopen <Integer>
|
24
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-gapopen <Integer>
|
25
25
|
Cost to open a gap| %></pre>
|
26
26
|
</li>
|
27
27
|
<li>
|
28
|
-
<pre><%= ERB::Util.h %q|-gapextend <Integer>
|
28
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-gapextend <Integer>
|
29
29
|
Cost to extend a gap| %></pre>
|
30
30
|
</li>
|
31
31
|
<li>
|
32
|
-
<pre><%= ERB::Util.h %q|-penalty <Integer, <=0>
|
32
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-penalty <Integer, <=0>
|
33
33
|
Penalty for a nucleotide mismatch| %></pre>
|
34
34
|
</li>
|
35
35
|
<li>
|
36
|
-
<pre><%= ERB::Util.h %q|-reward <Integer, >=0>
|
36
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-reward <Integer, >=0>
|
37
37
|
Reward for a nucleotide match| %></pre>
|
38
38
|
</li>
|
39
39
|
<li>
|
40
|
-
<pre><%= ERB::Util.h %q|-use_index <Boolean>
|
40
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-use_index <Boolean>
|
41
41
|
Use MegaBLAST database index
|
42
42
|
Default = 'false'| %></pre>
|
43
43
|
</li>
|
44
44
|
</ul>
|
45
45
|
<br />
|
46
46
|
|
47
|
-
<h5>Formatting Options</h5>
|
48
|
-
<ul class="list-unstyled">
|
47
|
+
<h5 class="text-lg py-4 font-medium">Formatting Options</h5>
|
48
|
+
<ul class="list-unstyled space-y-2">
|
49
49
|
<li>
|
50
|
-
<pre><%= ERB::Util.h %q|-show_gis
|
50
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-show_gis
|
51
51
|
Show NCBI GIs in deflines?| %></pre>
|
52
52
|
</li>
|
53
53
|
<li>
|
54
|
-
<pre><%= ERB::Util.h %q|-num_descriptions <Integer, >=0>
|
54
|
+
<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>
|
55
55
|
Number of database sequences to show one-line descriptions for
|
56
56
|
Not applicable for outfmt > 4
|
57
57
|
Default = '500'
|
58
58
|
* Incompatible with: max_target_seqs| %></pre>
|
59
59
|
</li>
|
60
60
|
<li>
|
61
|
-
<pre><%= ERB::Util.h %q| -num_alignments <Integer, >=0>
|
61
|
+
<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>
|
62
62
|
Number of database sequences to show alignments for
|
63
63
|
Default = '250'
|
64
64
|
* Incompatible with: max_target_seqs| %></pre>
|
65
65
|
</li>
|
66
66
|
<li>
|
67
|
-
<pre><%= ERB::Util.h %q| -line_length <Integer, >=1>
|
67
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q| -line_length <Integer, >=1>
|
68
68
|
Line length for formatting alignments
|
69
69
|
Not applicable for outfmt > 4
|
70
70
|
Default = '60'| %></pre>
|
@@ -73,52 +73,52 @@
|
|
73
73
|
|
74
74
|
<br/>
|
75
75
|
|
76
|
-
<h5>Query filtering options</h5>
|
77
|
-
<ul class="list-unstyled">
|
76
|
+
<h5 class="text-lg py-4 font-medium">Query filtering options</h5>
|
77
|
+
<ul class="list-unstyled space-y-2">
|
78
78
|
<li>
|
79
|
-
<pre><%= ERB::Util.h %q|-dust <String>
|
79
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-dust <String>
|
80
80
|
Filter query sequence with DUST (Format: 'yes', 'level window linker', or
|
81
|
-
'no' to disable)
|
81
|
+
'no' to disable)
|
82
82
|
Default = '20 64 1' ('no' for blastn-short)| %></pre>
|
83
83
|
</li>
|
84
84
|
<li>
|
85
|
-
<pre><%= ERB::Util.h %q|-soft_masking <Boolean>
|
85
|
+
<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>
|
86
86
|
Apply filtering locations as soft masks
|
87
87
|
Default = 'true'| %></pre>
|
88
88
|
</li>
|
89
89
|
<li>
|
90
|
-
<pre><%= ERB::Util.h %q|-lcase_masking
|
90
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-lcase_masking
|
91
91
|
Use lower case filtering in query and subject sequence(s)?| %></pre>
|
92
92
|
</li>
|
93
93
|
</ul>
|
94
94
|
|
95
95
|
<br/>
|
96
96
|
|
97
|
-
<h5>Restrict search or results</h5>
|
98
|
-
<ul class="list-unstyled">
|
97
|
+
<h5 class="text-lg py-4 font-medium">Restrict search or results</h5>
|
98
|
+
<ul class="list-unstyled space-y-2">
|
99
99
|
<li>
|
100
|
-
<pre><%= ERB::Util.h %q|-gilist <String>
|
100
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-gilist <String>
|
101
101
|
Restrict search of database to list of GIs
|
102
102
|
* Incompatible with: seqidlist, taxids, taxidlist, negative_gilist,
|
103
103
|
negative_seqidlist, negative_taxids, negative_taxidlist, remote, subject,
|
104
104
|
subject_loc| %></pre>
|
105
105
|
</li>
|
106
106
|
<li>
|
107
|
-
<pre><%= ERB::Util.h %q|-seqidlist <String>
|
107
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-seqidlist <String>
|
108
108
|
Restrict search of database to list of SeqIDs
|
109
109
|
* Incompatible with: gilist, taxids, taxidlist, negative_gilist,
|
110
110
|
negative_seqidlist, negative_taxids, negative_taxidlist, remote, subject,
|
111
111
|
subject_loc| %></pre>
|
112
112
|
</li>
|
113
113
|
<li>
|
114
|
-
<pre><%= ERB::Util.h %q|-negative_gilist <String>
|
114
|
+
<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>
|
115
115
|
Restrict search of database to everything except the specified GIs
|
116
116
|
* Incompatible with: gilist, seqidlist, taxids, taxidlist,
|
117
117
|
negative_seqidlist, negative_taxids, negative_taxidlist, remote, subject,
|
118
118
|
subject_loc| %></pre>
|
119
119
|
</li>
|
120
120
|
<li>
|
121
|
-
<pre><%= ERB::Util.h %q|-negative_seqidlist <String>
|
121
|
+
<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>
|
122
122
|
Restrict search of database to everything except the specified SeqIDs
|
123
123
|
* Incompatible with: gilist, seqidlist, taxids, taxidlist,
|
124
124
|
negative_gilist, negative_taxids, negative_taxidlist, remote, subject,
|
@@ -126,82 +126,82 @@
|
|
126
126
|
</li>
|
127
127
|
<li>
|
128
128
|
<li>
|
129
|
-
<pre><%= ERB::Util.h %q|-taxids <String>
|
129
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-taxids <String>
|
130
130
|
Restrict search of database to include only the specified taxonomy IDs (multiple IDs delimited by ',')
|
131
131
|
* Incompatible with: gilist, seqidlist, taxidlist, negative_gilist,
|
132
132
|
negative_seqidlist, negative_taxids, negative_taxidlist, remote, subject,
|
133
133
|
subject_loc| %></pre>
|
134
134
|
</li>
|
135
135
|
<li>
|
136
|
-
<pre><%= ERB::Util.h %q|-negative_taxids <String>
|
136
|
+
<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>
|
137
137
|
Restrict search of database to everything except the specified taxonomy IDs (multiple IDs delimited by ',')
|
138
138
|
* Incompatible with: gilist, seqidlist, taxids, taxidlist,
|
139
139
|
negative_gilist, negative_seqidlist, negative_taxidlist, remote, subject,
|
140
140
|
subject_loc| %></pre>
|
141
141
|
</li>
|
142
142
|
<li>
|
143
|
-
<pre><%= ERB::Util.h %q|-taxidlist <String>
|
143
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-taxidlist <String>
|
144
144
|
Restrict search of database to include only the specified taxonomy IDs
|
145
145
|
* Incompatible with: gilist, seqidlist, taxids, negative_gilist,
|
146
146
|
negative_seqidlist, negative_taxids, negative_taxidlist, remote, subject,
|
147
147
|
subject_loc| %></pre>
|
148
148
|
</li>
|
149
149
|
<li>
|
150
|
-
<pre><%= ERB::Util.h %q|-negative_taxidlist <String>
|
150
|
+
<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>
|
151
151
|
Restrict search of database to everything except the specified taxonomy IDs
|
152
152
|
* Incompatible with: gilist, seqidlist, taxids, taxidlist,
|
153
153
|
negative_gilist, negative_seqidlist, negative_taxids, remote, subject,
|
154
154
|
subject_loc| %></pre>
|
155
155
|
</li>
|
156
156
|
<li>
|
157
|
-
<pre><%= ERB::Util.h %q|-entrez_query <String>
|
157
|
+
<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>
|
158
158
|
Restrict search with the given Entrez query
|
159
159
|
* Requires: remote| %></pre>
|
160
160
|
</li>
|
161
161
|
<li>
|
162
|
-
<pre><%= ERB::Util.h %q|-db_soft_mask <String>
|
162
|
+
<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>
|
163
163
|
Filtering algorithm ID to apply to the BLAST database as soft masking
|
164
164
|
* Incompatible with: db_hard_mask, subject, subject_loc| %></pre>
|
165
165
|
</li>
|
166
166
|
<li>
|
167
|
-
<pre><%= ERB::Util.h %q|-db_hard_mask <String>
|
167
|
+
<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>
|
168
168
|
Filtering algorithm ID to apply to the BLAST database as hard masking
|
169
169
|
* Incompatible with: db_soft_mask, subject, subject_loc| %></pre>
|
170
170
|
</li>
|
171
171
|
<li>
|
172
|
-
<pre><%= ERB::Util.h %q|-perc_identity <Real, 0..100>
|
172
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-perc_identity <Real, 0..100>
|
173
173
|
Percent identity| %></pre>
|
174
174
|
</li>
|
175
175
|
<li>
|
176
|
-
<pre><%= ERB::Util.h %q|-qcov_hsp_perc <Real, 0..100>
|
176
|
+
<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>
|
177
177
|
Percent query coverage per hsp| %></pre>
|
178
178
|
</li>
|
179
179
|
<li>
|
180
|
-
<pre><%= ERB::Util.h %q|-max_hsps <Integer, >=1>
|
180
|
+
<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>
|
181
181
|
Set maximum number of HSPs per subject sequence to save for each query| %></pre>
|
182
182
|
</li>
|
183
183
|
<li>
|
184
|
-
<pre><%= ERB::Util.h %q|-culling_limit <Integer, >=0>
|
184
|
+
<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>
|
185
185
|
If the query range of a hit is enveloped by that of at least this
|
186
186
|
many higher-scoring hits, delete the hit
|
187
187
|
* Incompatible with: best_hit_overhang, best_hit_score_edge| %></pre>
|
188
188
|
</li>
|
189
189
|
<li>
|
190
|
-
<pre><%= ERB::Util.h %q|-best_hit_overhang <Real, (>0 and <0.5)>
|
190
|
+
<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)>
|
191
191
|
Best Hit algorithm overhang value (recommended value: 0.1)
|
192
192
|
* Incompatible with: culling_limit| %></pre>
|
193
193
|
</li>
|
194
194
|
<li>
|
195
|
-
<pre><%= ERB::Util.h %q|-best_hit_score_edge <Real, (>0 and <0.5)>
|
195
|
+
<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)>
|
196
196
|
Best Hit algorithm score edge value (recommended value: 0.1)
|
197
197
|
* Incompatible with: culling_limit| %></pre>
|
198
198
|
</li>
|
199
199
|
<li>
|
200
|
-
<pre><%= ERB::Util.h %q|-subject_besthit
|
200
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-subject_besthit
|
201
201
|
Turn on best hit per subject sequence| %></pre>
|
202
202
|
</li>
|
203
203
|
<li>
|
204
|
-
<pre><%= ERB::Util.h %q|-max_target_seqs <Integer, >=1>
|
204
|
+
<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>
|
205
205
|
Maximum number of aligned sequences to keep (value of 5 or more is recommended)
|
206
206
|
Default = '500'
|
207
207
|
* Incompatible with: num_descriptions, num_alignments| %></pre>
|
@@ -210,15 +210,15 @@
|
|
210
210
|
|
211
211
|
<br/>
|
212
212
|
|
213
|
-
<h5>Discontiguous MegaBLAST options</h5>
|
214
|
-
<ul class="list-unstyled">
|
213
|
+
<h5 class="text-lg py-4 font-medium">Discontiguous MegaBLAST options</h5>
|
214
|
+
<ul class="list-unstyled space-y-2">
|
215
215
|
<li>
|
216
|
-
<pre><%= ERB::Util.h %q|-template_type <String, `coding', `coding_and_optimal', `optimal'>
|
216
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-template_type <String, `coding', `coding_and_optimal', `optimal'>
|
217
217
|
Discontiguous MegaBLAST template type
|
218
218
|
* Requires: template_length| %></pre>
|
219
219
|
</li>
|
220
220
|
<li>
|
221
|
-
<pre><%= ERB::Util.h %q|-template_length <Integer, Permissible values: '16' '18' '21' >
|
221
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-template_length <Integer, Permissible values: '16' '18' '21' >
|
222
222
|
Discontiguous MegaBLAST template length
|
223
223
|
* Requires: template_type| %></pre>
|
224
224
|
</li>
|
@@ -227,65 +227,65 @@
|
|
227
227
|
|
228
228
|
<br/>
|
229
229
|
|
230
|
-
<h5>Statistical options</h5>
|
231
|
-
<ul class="list-unstyled">
|
230
|
+
<h5 class="text-lg py-4 font-medium">Statistical options</h5>
|
231
|
+
<ul class="list-unstyled space-y-2">
|
232
232
|
<li>
|
233
|
-
<pre><%= ERB::Util.h %q|-dbsize <Int8>
|
233
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-dbsize <Int8>
|
234
234
|
Effective length of the database| %></pre>
|
235
235
|
</li>
|
236
236
|
<li>
|
237
|
-
<pre><%= ERB::Util.h %q|-searchsp <Int8, >=0>
|
237
|
+
<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>
|
238
238
|
Effective length of the search space| %></pre>
|
239
239
|
</li>
|
240
240
|
</ul>
|
241
241
|
|
242
242
|
<br/>
|
243
243
|
|
244
|
-
<h5>Extension options</h5>
|
245
|
-
<ul class="list-unstyled">
|
244
|
+
<h5 class="text-lg py-4 font-medium">Extension options</h5>
|
245
|
+
<ul class="list-unstyled space-y-2">
|
246
246
|
<li>
|
247
|
-
<pre><%= ERB::Util.h %q|-xdrop_ungap <Real>
|
247
|
+
<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>
|
248
248
|
X-dropoff value (in bits) for ungapped extensions| %></pre>
|
249
249
|
</li>
|
250
250
|
<li>
|
251
|
-
<pre><%= ERB::Util.h %q|-xdrop_gap <Real>
|
251
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-xdrop_gap <Real>
|
252
252
|
X-dropoff value (in bits) for preliminary gapped extensions| %></pre>
|
253
253
|
</li>
|
254
254
|
<li>
|
255
|
-
<pre><%= ERB::Util.h %q|-xdrop_gap_final <Real>
|
255
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-xdrop_gap_final <Real>
|
256
256
|
X-dropoff value (in bits) for final gapped alignment| %></pre>
|
257
257
|
</li>
|
258
258
|
<li>
|
259
|
-
<pre><%= ERB::Util.h %q|-no_greedy
|
259
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-no_greedy
|
260
260
|
Use non-greedy dynamic programming extension| %></pre>
|
261
261
|
</li>
|
262
262
|
<li>
|
263
|
-
<pre><%= ERB::Util.h %q|-min_raw_gapped_score <Integer>
|
263
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-min_raw_gapped_score <Integer>
|
264
264
|
Minimum raw gapped score to keep an alignment in the preliminary gapped and
|
265
265
|
traceback stages| %></pre>
|
266
266
|
</li>
|
267
267
|
<li>
|
268
|
-
<pre><%= ERB::Util.h %q|-ungapped
|
268
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-ungapped
|
269
269
|
Perform ungapped alignment only?| %></pre>
|
270
270
|
</li>
|
271
271
|
<li>
|
272
|
-
<pre><%= ERB::Util.h %q|-window_size <Integer, >=0>
|
272
|
+
<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>
|
273
273
|
Multiple hits window size, use 0 to specify 1-hit algorithm| %></pre>
|
274
274
|
</li>
|
275
275
|
<li>
|
276
|
-
<pre><%= ERB::Util.h %q|-off_diagonal_range <Integer, >=0>
|
276
|
+
<pre class="bg-gray-100 border rounded overflow-x-auto p-2 font-mono hover:bg-yellow-100"><%= ERB::Util.h %q|-off_diagonal_range <Integer, >=0>
|
277
277
|
Number of off-diagonals to search for the 2nd hit, use 0 to turn off
|
278
278
|
Default = `0'| %></pre>
|
279
279
|
</li>
|
280
|
-
|
280
|
+
|
281
281
|
</ul>
|
282
282
|
<br/>
|
283
283
|
|
284
|
-
<h5>Miscellaneous options</h5>
|
285
|
-
<ul class="list-unstyled">
|
284
|
+
<h5 class="text-lg py-4 font-medium">Miscellaneous options</h5>
|
285
|
+
<ul class="list-unstyled space-y-2">
|
286
286
|
<li>
|
287
|
-
<pre><%= ERB::Util.h %q|-parse_deflines <Real>
|
287
|
+
<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>
|
288
288
|
Should the query and subject defline(s) be parsed?| %></pre>
|
289
289
|
</li>
|
290
|
-
|
290
|
+
|
291
291
|
</ul>
|