Specific E Values In Blast Score
1
1
Entering edit mode
13.0 years ago
Azam ▴ 60

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 • 2.6k views
ADD COMMENT
2
Entering edit mode

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...

ADD REPLY
1
Entering edit mode

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

ADD REPLY
0
Entering edit mode

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

ADD REPLY
4
Entering edit mode
13.0 years ago

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

ADD COMMENT

Login before adding your answer.

Traffic: 2008 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6