package phylogenetics

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

Module Phylogenetics.SeqSource

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

Sourcemodule type Base = sig ... end
Sourcemodule type S = sig ... end

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

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

Main functor (using arrays)

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

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

Sourcemodule DNA : sig ... end

Pre-built DNA module.

OCaml

Innovation. Community. Security.