This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Specific E Values In Blast Score

I have e values in one column but I want to select specific e values less than 0.0003 in order to print the same column.

blast

I am afraid you will need to be a bit more specific to get any help. As it is now, the only thing I can advise, is to [sort|filter|...] your [spreadsheet|matrix|data.frame|...] by e-value...

Not a very clear question. Do you mean that you want to print rows where the e-value column is < 0.0003 ?

No, column contain lot of e values but i need only those which are less than <0.0003

1 answer

With awk (if the e-value is in your 11th column in a tabular blast output):

awk '$11 < 1e-5 { print $0}' myresult.blast

Emmanuel

Log in to answer this question.