genomicframe-core 0.2.0

High-performance genomics I/O and interoperability layer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! GFF/GTF format support
//!
//! Provides streaming readers and statistics for gene annotation files.

// Core reader implementation
pub mod reader;

// Statistics computation
pub mod stats;

// Re-export main types
pub use reader::{GffHeader, GffReader, GffRecord};
pub use stats::GffStats;