Entering edit mode
3.7 years ago
CHINMAYA
▴
10
I want to run my fasta file in hmmer against pfam database with E-value ≤ e^0.001, but there is lot of confusion in how to put E-value. I run it like
$ hmmpress Pfam-A.hmm
$ hmmscan --cpu 8 -E 0.001 -o file Pfam-A.hmm mix.fa
and what are the meaning of these
-E <x> : report models <= this E-value threshold in output [10.0] (x>0)
-T <x> : report models >= this score threshold in output
--domE <x> : report domains <= this E-value threshold in output [10.0] (x>0)
--domT <x> : report domains >= this score cutoff in output
and how to use these options?
Please use the formatting bar (especially the
code
option) to present your post better. You can use backticks for inline code (`text` becomestext
), or select a chunk of text and use the highlighted button to format it as a code block. If your code has long lines with a single command, break those lines into multiple lines with proper escape sequences so they're easier to read and still run when copy-pasted. I've done it for you this time.ok thank you