Bowtie2
基于 FM 索引的超快速短读段比对工具,支持局部比对和端到端比对模式。 该方法使用全文本分钟索引实现亚线性时间比对,是短读段比对的标准工具之一。
| Property | Value |
|---|---|
| Purpose | 短读段快速比对到参考基因组 |
| Time Complexity | O(n) |
| Space Complexity | O(n) |
| Year | 2012 |
| Category | Sequence Alignment |
Complexity Analysis
- Time Complexity:
O(n) - Space Complexity:
O(n)
Performance Insight: The time complexity of this algorithm is linear (O(n)), scales linearly to TB-scale data and is suitable for streaming pipelines. Linear space can often be reduced by constant factors via sliding-window techniques.
Note: Complexity analysis is based on theoretical models. Actual runtime is affected by input scale, hardware, and implementation optimizations. Benchmark for your specific workload.
Literature & Implementation
Related Tools
BWA · HISAT2 · Minimap2