granges 0.2.2

A Rust library and command line tool for genomic range operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Types and methods for reading and parsing input and writing output.

pub mod file;
pub mod parsers;
pub mod tsv;

pub use file::{InputStream, OutputStream};
pub use parsers::{
    bed::{Bed3Iterator, Bed4Iterator, Bed5Iterator, BedlikeIterator},
    tsv::TsvRecordIterator,
    GenomicRangesFile, GenomicRangesParser,
};
pub use tsv::{TsvConfig, BED_TSV};