Skip to content

Reference-Guided Assembly

基于参考基因组的序列组装方法,将测序读段先比对到参考序列上,再进行局部组装和变异检测。 该方法适合有近缘参考基因组的物种,组装速度快且资源消耗低,常用于重测序项目。

PropertyValue
Purpose基于参考序列的快速基因组组装
Time ComplexityO(n log n)
Space ComplexityO(n)
Year2011
CategorySequence Assembly

Complexity Analysis

  • Time Complexity: O(n log n)
  • Space Complexity: O(n)

Performance Insight: The time complexity of this algorithm is quasi-linear (n log n), balancing practical efficiency with theoretical near-optimality. 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

Ragout · RaGOO · RagTag

Tags

reference-based scaffolding resequencing efficient

Released under the MIT License.