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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
|
.TH "hmmscan" 1 "@HMMER_DATE@" "HMMER @HMMER_VERSION@" "HMMER Manual"
.SH NAME
hmmscan \- search sequence(s) against a profile database
.SH SYNOPSIS
.B hmmscan
[\fIoptions\fR]
.I hmmdb
.I seqfile
.SH DESCRIPTION
.PP
.B hmmscan
is used to search protein sequences against collections
of protein profiles. For each sequence in
.IR seqfile ,
use that query sequence to search the target database of
profiles in
.IR hmmdb ,
and output ranked lists of the profiles with the
most significant matches to the sequence.
.PP
The
.I seqfile
may contain more than one query sequence. Each will be searched
in turn against
.I hmmdb.
.PP
The
.I hmmdb
needs to be press'ed using
.B hmmpress
before it can be searched with
.BR hmmscan .
This creates four binary files,
suffixed
.BR .h3{fimp} .
.PP
The query
.I seqfile
may be '\-' (a dash character), in which case
the query sequences are read from a
stdin
pipe instead of from a file.
The
.I hmmdb
cannot be read from a
stdin
stream, because it needs to have
those four auxiliary binary files generated by
.BR hmmpress .
.PP
The output format is designed to be human-readable, but is often so
voluminous that reading it is impractical, and parsing it is a pain. The
.B \-\-tblout
and
.B \-\-domtblout
options save output in simple tabular formats that are concise and
easier to parse.
The
.B \-o
option allows redirecting the main output, including throwing it away
in /dev/null.
.SH OPTIONS
.TP
.B \-h
Help; print a brief reminder of command line usage and all available
options.
.SH OPTIONS FOR CONTROLLING OUTPUT
.TP
.BI \-o " <f>"
Direct the main human-readable output to a file
.I <f>
instead of the default stdout.
.TP
.BI \-\-tblout " <f>"
Save a simple tabular (space-delimited) file summarizing the
per-target output, with one data line per homologous target model
found.
.TP
.BI \-\-domtblout " <f>"
Save a simple tabular (space-delimited) file summarizing the
per-domain output, with one data line per homologous domain
detected in a query sequence for each homologous model.
.TP
.BI \-\-pfamtblout " <f>"
Save an especially succinct tabular (space-delimited) file
summarizing the per-target output, with one data line per
homologous target model found.
.TP
.B \-\-acc
Use accessions instead of names in the main output, where available
for profiles and/or sequences.
.TP
.B \-\-noali
Omit the alignment section from the main output. This can greatly
reduce the output volume.
.TP
.B \-\-notextw
Unlimit the length of each line in the main output. The default
is a limit of 120 characters per line, which helps in displaying
the output cleanly on terminals and in editors, but can truncate
target profile description lines.
.TP
.BI \-\-textw " <n>"
Set the main output's line length limit to
.I <n>
characters per line. The default is 120.
.SH OPTIONS FOR REPORTING THRESHOLDS
Reporting thresholds control which hits are reported in output files
(the main output,
.BR \-\-tblout ,
and
.BR \-\-domtblout ).
.TP
.BI \-E " <x>"
In the per-target output, report target profiles with an E-value of <=
.IR <x> .
The default is 10.0, meaning that on average, about 10 false positives
will be reported per query, so you can see the top of the noise
and decide for yourself if it's really noise.
.TP
.BI \-T " <x>"
Instead of thresholding per-profile output on E-value, instead
report target profiles with a bit score of >=
.IR <x> .
.TP
.BI \-\-domE " <x>"
In the per-domain output, for target profiles that have already satisfied
the per-profile reporting threshold, report individual domains
with a conditional E-value of <=
.IR <x> .
The default is 10.0.
A conditional E-value means the expected number of additional false
positive domains in the smaller search space of those comparisons that
already satisfied the per-profile reporting threshold (and thus must
have at least one homologous domain already).
.TP
.BI \-\-domT " <x>"
Instead of thresholding per-domain output on E-value, instead
report domains with a bit score of >=
.IR <x> .
.SH OPTIONS FOR INCLUSION THRESHOLDS
Inclusion thresholds are stricter than reporting thresholds.
Inclusion thresholds control which hits are considered to be
reliable enough
to be included in an output alignment or a subsequent search round.
In
.BR hmmscan ,
which does not have any alignment output (like
.B hmmsearch
or
.BR phmmer )
nor any iterative search steps (like
.BR jackhmmer ),
inclusion thresholds have little effect. They only affect what domains
get marked as significant (!) or questionable (?) in domain
output.
.TP
.BI \-\-incE " <x>"
Use an E-value of <=
.I <x>
as the per-target inclusion threshold.
The default is 0.01, meaning that on average, about 1 false positive
would be expected in every 100 searches with different query
sequences.
.TP
.BI \-\-incT " <x>"
Instead of using E-values for setting the inclusion threshold, instead
use a bit score of >=
.I <x>
as the per-target inclusion threshold.
It would be unusual to use bit score thresholds with
.IR hmmscan ,
because you don't expect a single score threshold to work for
different profiles; different profiles have slightly different
expected score distributions.
.TP
.BI \-\-incdomE " <x>"
Use a conditional E-value of <=
.I <x>
as the per-domain inclusion threshold, in targets that have already
satisfied the overall per-target inclusion threshold.
The default is 0.01.
.TP
.BI \-\-incdomT " <x>"
Instead of using E-values,
instead use a bit score of >=
.I <x>
as the per-domain inclusion threshold.
As with
.B \-\-incT
above,
it would be unusual to use a single bit score threshold in
.BR hmmscan .
.SH OPTIONS FOR MODEL-SPECIFIC SCORE THRESHOLDING
Curated profile databases may define specific bit score thresholds for
each profile, superseding any thresholding based on statistical
significance alone.
To use these options, the profile must contain the appropriate (GA,
TC, and/or NC) optional score threshold annotation; this is picked up
by
.B hmmbuild
from Stockholm format alignment files. Each thresholding option has
two scores: the per-sequence threshold
.I <x1>
and the per-domain threshold
.IR <x2> .
These act as if
.BI \-T " <x1>"
.BI \-\-incT " <x1>"
.BI \-\-domT " <x2>"
.BI \-\-incdomT " <x2>"
has been applied specifically using each model's curated thresholds.
.TP
.B \-\-cut_ga
Use the GA (gathering) bit scores in the model to set
per-sequence (GA1) and per-domain (GA2) reporting and inclusion
thresholds. GA thresholds are generally considered to be the
reliable curated thresholds defining family membership; for example,
in Pfam, these thresholds define what gets included in Pfam Full
alignments based on searches with Pfam Seed models.
.TP
.B \-\-cut_nc
Use the NC (noise cutoff) bit score thresholds in the model to set
per-sequence (NC1) and per-domain (NC2) reporting and inclusion
thresholds. NC thresholds are generally considered to be the score of
the highest-scoring known false positive.
.TP
.B \-\-cut_tc
Use the NC (trusted cutoff) bit score thresholds in the model to set
per-sequence (TC1) and per-domain (TC2) reporting and inclusion
thresholds. TC thresholds are generally considered to be the score of
the lowest-scoring known true positive that is above all known false
positives.
.SH CONTROL OF THE ACCELERATION PIPELINE
HMMER3 searches are accelerated in a three-step filter pipeline: the
MSV filter, the Viterbi filter, and the Forward filter. The first
filter is the fastest and most approximate; the last is the full
Forward scoring algorithm. There is also a bias filter step between
MSV and Viterbi. Targets that pass all the steps in the acceleration
pipeline are then subjected to postprocessing -- domain
identification and scoring using the Forward/Backward algorithm.
Changing filter thresholds only removes or includes targets from
consideration; changing filter thresholds does not alter bit scores,
E-values, or alignments, all of which are determined solely in
postprocessing.
.TP
.B \-\-max
Turn off all filters, including the bias filter, and run full
Forward/Backward postprocessing on every target. This increases
sensitivity somewhat, at a large cost in speed.
.TP
.BI \-\-F1 " <x>"
Set the P-value threshold for the MSV filter step. The default is
0.02, meaning that roughly 2% of the highest scoring nonhomologous
targets are expected to pass the filter.
.TP
.BI \-\-F2 " <x>"
Set the P-value threshold for the Viterbi filter step.
The default is 0.001.
.TP
.BI \-\-F3 " <x>"
Set the P-value threshold for the Forward filter step.
The default is 1e-5.
.TP
.B \-\-nobias
Turn off the bias filter. This increases sensitivity somewhat, but can
come at a high cost in speed, especially if the query has biased
residue composition (such as a repetitive sequence region, or if it is
a membrane protein with large regions of hydrophobicity). Without the
bias filter, too many sequences may pass the filter with biased
queries, leading to slower than expected performance as the
computationally intensive Forward/Backward algorithms shoulder an
abnormally heavy load.
.SH OTHER OPTIONS
.TP
.B \-\-nonull2
Turn off the null2 score corrections for biased composition.
.TP
.BI \-Z " <x>"
Assert that the total number of targets in your searches is
.IR <x> ,
for the purposes of per-sequence E-value calculations,
rather than the actual number of targets seen.
.TP
.BI \-\-domZ " <x>"
Assert that the total number of targets in your searches is
.IR <x> ,
for the purposes of per-domain conditional E-value calculations,
rather than the number of targets that passed the reporting thresholds.
.TP
.BI \-\-seed " <n>"
Set the random number seed to
.IR <n> .
Some steps in postprocessing require Monte Carlo simulation. The
default is to use a fixed seed (42), so that results are exactly
reproducible. Any other positive integer will give different (but also
reproducible) results. A choice of 0 uses an arbitrarily chosen seed.
.TP
.BI \-\-qformat " <s>"
Assert that input
.I seqfile
is in format
.IR <s> ,
bypassing format autodetection.
Common choices for
.I <s>
include:
.BR fasta ,
.BR embl ,
.BR genbank.
Alignment formats also work;
common choices include:
.BR stockholm ,
.BR a2m ,
.BR afa ,
.BR psiblast ,
.BR clustal ,
.BR phylip .
For more information, and for codes for some less common formats,
see main documentation.
The string
.I <s>
is case-insensitive (\fBfasta\fR or \fBFASTA\fR both work).
.TP
.BI \-\-cpu " <n>"
Set the number of parallel worker threads to
.IR <n> .
On multicore machines, the default is 2.
You can also control this number by setting an environment variable,
.IR HMMER_NCPU .
There is also a master thread, so the actual number of threads that
HMMER spawns is
.IR <n> +1.
This option is not available if HMMER was compiled with POSIX threads
support turned off.
.TP
.BI \-\-stall
For debugging the MPI master/worker version: pause after start, to
enable the developer to attach debuggers to the running master and
worker(s) processes. Send SIGCONT signal to release the pause.
(Under gdb:
.BR "(gdb) signal SIGCONT" )
(Only available if optional MPI support was enabled at compile-time.)
.TP
.B \-\-mpi
Run under MPI control with master/worker parallelization (using
.BR mpirun ,
for example, or equivalent). Only available if optional MPI support
was enabled at compile-time.
.SH SEE ALSO
See
.BR hmmer (1)
for a master man page with a list of all the individual man pages
for programs in the HMMER package.
.PP
For complete documentation, see the user guide that came with your
HMMER distribution (Userguide.pdf); or see the HMMER web page
(@HMMER_URL@).
.SH COPYRIGHT
.nf
@HMMER_COPYRIGHT@
@HMMER_LICENSE@
.fi
For additional information on copyright and licensing, see the file
called COPYRIGHT in your HMMER source distribution, or see the HMMER
web page
(@HMMER_URL@).
.SH AUTHOR
.nf
http://eddylab.org
.fi
|