package phylogenetics

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Newick.Tree_reprSource

Sourcetype ast = t
Sourcetype node_info = {
  1. name : string option;
  2. tags : tag list;
}
Sourcetype tree = (node_info, node_info, float option) Tree.t
Sourcetype branch = (node_info, node_info, float option) Tree.branch
Sourcetype t =
  1. | Tree of tree
  2. | Branch of branch
Sourceval of_ast : ast -> t
Sourceval to_ast : t -> ast
Sourceval map_inner_tree : t -> f:(tree -> tree) -> t
Sourceval with_inner_tree : t -> f:(tree -> 'a) -> 'a