package phylogenetics

  1. Overview
  2. Docs

Module for sequences of bases. Provides a functor to build the module for any base module with the BASE signature.

module type Base = sig ... end
module type S = sig ... end

Module type for sequences of bases (eg, DNA).

module Make (B : Base) : S with type base = B.t

Main functor (using arrays)

module Make_list (B : Base) : S with type base = B.t

List-based constructor (no particular reason to use it)

module DNA : sig ... end

Pre-built DNA module.