newick-rs 0.2.0

A library for newick format
Documentation

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);
}