package phylogenetics

  1. Overview
  2. Docs
Algorithms and datastructures for phylogenetics

Install

dune-project
 Dependency

Authors

Maintainers

Sources

phylogenetics-0.3.0.tbz
sha256=de867d7cc017a8e434dab43ef16f0f6495973892cd7b6a8446b18e79393704a8
sha512=0209538caf94be47eabcaa25399c54849bd4fa0fc79e0579acee27f46ef3b72aa50e17bdb48fed8e86674d4caee6c1c4c423833a2757db12e2a6cc28234510de

doc/phylogenetics/Phylogenetics/Newick/Tree_repr/index.html

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