newick-rs

Crates.ionewick-rs
lib.rsnewick-rs
version0.2.0
sourcesrc
created_at2020-06-14 14:24:21.929949
updated_at2020-06-14 15:56:07.549076
descriptionA library for newick format
homepage
repositoryhttps://github.com/kaorun343/newick-rs
max_upload_size
id253863
size12,563
(kaorun343)

documentation

README

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

Commit count: 18

cargo fmt