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
13
14
15
16
17
18
//! 核心模块:提供序列处理的基础设施
//!
//! # 模块说明
//! - `seq_record`: 序列记录数据结构
//! - `tables`: 碱基编码查找表
//! - `seq_reader`: 序列文件读取器
//! - `seq_writer`: 序列文件写入器

pub mod seq_reader;
pub mod seq_record;
pub mod seq_writer;
pub mod tables;

// 重新导出常用类型,方便外部使用
pub use seq_reader::SeqReader;
pub use seq_record::SeqRecord;
pub use seq_writer::SeqWriter;
pub use tables::LOOKUP_TABLES;