kaorun343 / newick-rs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

newick-rs

Build Status newick-rs at crates.io newick-rs at docs.rs

Usage

extern crate newick_rs;

fn main() {
    let input_text = "(A,B)";
    let input_tree = newick_rs::from_newick(text).unwrap();

    // some logics

    let output_text = newick_rs::to_newick(&output_tree);
}

About


Languages

Language:Rust 100.0%