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
14
//! BED format support (Browser Extensible Data)
//!
//! BED format represents genomic intervals/regions in a tab-delimited text format.
//! Supports BED3 (minimal), BED6 (standard), and BED12 (full) formats.

// Public API
pub mod filters;
pub mod reader;
pub mod stats;

// Re-export commonly used types
pub use reader::{BedReader, BedRecord};
pub use stats::BedStats;
pub mod expression;