polaranges 0.3.2

Rust-first genomic range operations on top of Polars DataFrames
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod error;
pub mod execute;
pub mod spec;

pub use error::{CommandError, Result};
pub use execute::{
    execute_command_frame, execute_nearest_frame, execute_overlap_frame, run_command, run_nearest,
    run_overlap, ExecOptions,
};
pub use spec::{
    BinaryInputs, IntervalColumns, IntervalCommandSpec, NearestCommandSpec, OverlapCommandSpec,
    StrandConstraint,
};