Expand description
A small library for computing the number of base pairs in a gene
to include noel as a library and use it within your project follow these steps:
- include
noel = 0.2.1
ornoel = "*"
under[dependencies]
in yourCargo.toml
file or just runcargo add noel
from the command line - the library name is
noel
, to use it just write:
use noel::{noel, noel_reader};
or
use noel::*;
- invoke
let exons = noel_reader(input: &PathBuf)
let lengths: HashMap<String, u32> = noel(exons: HashMap<String, Vec<(u32, u32)>>)
Re-exports§
pub use record::*;