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_ast/index.html

Module Phylogenetics.Newick_astSource

Sourcetype tag = string * string
Sourcetype t = {
  1. name : string option;
  2. tags : tag list;
  3. parent_branch : float option;
  4. children : t list;
}
Sourcetype error_desc = {
  1. offset : int;
  2. line : int;
  3. column : int;
  4. msg : string;
}
Sourceval string_of_error_desc : error_desc -> string
Sourcetype error = [
  1. | `Newick_parser_error of error_desc
]
Sourceval mkerror : Lexing.lexbuf -> string -> [> `Newick_parser_error of error_desc ]
Sourceval string_of_error : [< `Newick_parser_error of error_desc ] -> string