Skip to content

Kalign

基于 Wu-Manber 字符串匹配算法的快速多序列比对工具,利用序列间的成对距离构建引导树。 该方法在保持较高比对质量的同时具有极快的运行速度,特别适用于大规模序列集合的快速比对。

PropertyValue
Purpose快速多序列比对
Time ComplexityO(n^2 * L)
Space ComplexityO(n * L)
Year2005
DifficultyIntermediate
LanguagesC, C++
CategorySequence Alignment

Complexity Analysis

  • Time Complexity: O(n^2 * L)
  • Space Complexity: O(n * L)

Performance Insight: The time complexity of this algorithm is polynomial.

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

MAFFT · MUSCLE · Clustal Omega

Tags

multiple-alignment fast wu-manber

Released under the MIT License.