atglib 0.2.0

A library to handle transcripts for genomics and transcriptomics
Documentation
1
2
3
4
5
6
7
8
//! Convert to bed format
//!
//! bed does not provide a Reader instance, can only be used as output
mod record;
mod writer;

pub use crate::bed::record::BedLine;
pub use crate::bed::writer::Writer;