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

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.