Skip to content

Bowtie2

基于 FM 索引的超快速短读段比对工具,支持局部比对和端到端比对模式。 该方法使用全文本分钟索引实现亚线性时间比对,是短读段比对的标准工具之一。

PropertyValue
Purpose短读段快速比对到参考基因组
Time ComplexityO(n)
Space ComplexityO(n)
Year2012
CategorySequence 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

BWA · HISAT2 · Minimap2

Tags

fm-index short-read fast high-throughput

Released under the MIT License.