package phylogenetics

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
include sig ... end
val make : (Amino_acid.t -> Amino_acid.t -> float) -> t

make f is a matrix such that f i j is the rate of transition from state i to state j. f is called only for i <> j.

val make_symetric : (Amino_acid.t -> Amino_acid.t -> float) -> t
val jc69 : unit -> t
val gtr : stationary_distribution:Amino_acid.vector -> exchangeabilities:Amino_acid.matrix -> t

Generalised Time-Reversible model. exchangeabilities should be a symetric matrix with arbitrary diagonal

val stationary_distribution : t -> Amino_acid.vector

stationary_distribution r numerically computes the asymptotic probability distribution pi of the CTMC defined by r.

val scaled_rate_matrix : Amino_acid.vector -> t -> t

scaled_rate_matrix pi r is a new matrix rate such that the corresponding CTMC has one expected transition per unit of time. In addition, if r is symetrical, the result has pi as stationary distribution.

val scale : t -> t

rescale matrix such that the sum of off-diagonal elements is 1.

OCaml

Innovation. Community. Security.