orthanq 1.22.0

A tool to quantify haplotypes in an uncertainty-aware manner
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use anyhow::Result;
use orthanq::cli::{run, Orthanq};
use structopt::StructOpt;

pub(crate) fn main() -> Result<()> {
    let opt = Orthanq::from_args();

    // setup logger
    fern::Dispatch::new()
        .level(log::LevelFilter::Info)
        .chain(std::io::stderr())
        .apply()
        .unwrap();

    run(opt)?;

    Ok(())
}