biolic 0.1.0

A modular bioinformatics toolkit in Rust for long-read sequence processing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! biolic: A modular bioinformatics toolkit in Rust.
//!
//! Binary entry point. All logic lives in the library crate (`src/lib.rs`).

use anyhow::Result;
use clap::Parser;

use biolic::cli::Cli;

fn main() -> Result<()> {
    let cli = Cli::parse();
    biolic::cli::run(cli)
}