Overview
This library provides a port to read genomic interval data in BED, GTF, and GFF (+ gz/zst/bz2) formats, representing them all as GenePred records.
Quick Start
Add this to your Cargo.toml:
[]
= "0.0.7"
# Optional features
= { = "0.0.7", = ["gzip", "zstd", "bz2", "mmap", "rayon"] }
Usage
// Enable both "rayon" and "mmap" features in Cargo.toml
use ;
use *;
Features
mmap: Enable memory-mapped file support (addsmemmap2dependency)rayon: Enable parallel processing (addsrayondependency)gzip: Enable gzip support (addsflate2dependency)zstd: Enable zstd support (addszstddependency)bz2: Enable bzip2 support (addsbzip2dependency)