Skip to content

Orione

利用参考辅助压缩的 FASTQ 和 SAM 格式压缩工具,将读段比对到参考序列后仅存储差异信息。该方法在有高质量参考基因组时压缩效果极佳。

PropertyValue
Purpose参考辅助的 FASTQ/SAM 压缩
Time ComplexityO(n)
Space ComplexityO(1)
Year2015
DifficultyIntermediate
LanguagesC
CategoryData Compression

Complexity Analysis

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

Performance Insight: The time complexity of this algorithm is linear (O(n)), scales linearly to TB-scale data and is suitable for streaming pipelines. Space overhead is minimal, making it suitable for memory-constrained or streaming environments.

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

CRAM · Genozip · Spring

Tags

reference-assisted fastq sam archival

Released under the MIT License.