Crate noel

source ·
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:

  1. include noel = 0.2.1 or noel = "*" under [dependencies] in your Cargo.toml file or just run cargo add noel from the command line
  2. the library name is noel, to use it just write:
use noel::{noel, noel_reader};

or

use noel::*;
  1. invoke
let exons = noel_reader(input: &PathBuf)
let lengths: HashMap<String, u32> = noel(exons: HashMap<String, Vec<(u32, u32)>>)

Re-exports

Modules

Functions