seqtkrs 0.1.1

A Rust reimplementation of seqtk, a fast and lightweight tool for processing biological sequences in FASTA/FASTQ format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 算法模块
//!
//! 提供seqtk中使用的各种核心算法实现:
//! - `trimmer`: Mott修剪算法,用于质量值修剪
//! - `sampler`: 蓄水池采样算法,用于序列采样
//! - `xdropoff`: X-dropoff算法,用于GC区域识别
//! - `kmer`: k-mer处理和频率统计

pub mod kmer;
pub mod sampler;
pub mod trimmer;
pub mod xdropoff;