Entering edit mode
13.6 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.
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.
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
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
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