Changes between Version 1 and Version 2 of blastTips
- Timestamp:
- 12/01/22 10:50:03 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
blastTips
v1 v2 127 127 * Note that databases indexed for old-style blastall (using formatdb) work fine with blast+. 128 128 129 === Filtering BLAST results=== 130 * Limiting or filtering hits: do not use max_target_seqs. Based on [[https://academic.oup.com/bioinformatics/advance-article/doi/10.1093/bioinformatics/bty833/5106166 | Misunderstood parameter of NCBI BLAST impacts the correctness of bioinformatics workflows]], this parameter does not return the top/best hit(s)! Instead, get all hits and filter downstream as needed. 129 === Using more restrictive BLAST options === 131 130 131 Limiting or filtering hits can be done by the following options, which are all a bit different: 132 133 * -max_target_seqs => Maximum number of aligned sequences to keep (value of 5 or more is recommended; incompatible with num_descriptions, num_alignments) 134 * -num_descriptions => Number of database sequences to show one-line descriptions for 135 * -num_alignments => Number of database sequences to show alignments for 136 137 Requiring higher-confident hits than the defaults can also be useful 138 139 * -evalue => Expectation value (E) threshold for saving hits (default = 10); can be reduced to 0.1 or even 1e-10 (depending on the reason for doing the BLAST search) 140 141