package biotk

  1. Overview
  2. Docs
module type Symbol = sig ... end
module type Score = sig ... end
module type Profile = sig ... end
module type S = sig ... end
module Make (Score : Score) (Symbol : Symbol) (Profile : Profile with type score = Score.t and type symbol = Symbol.t) : S with type score := Score.t and type profile := Profile.t and type symbol := Symbol.t
module Nucleotide : sig ... end
module Nucleotide_frequency : sig ... end
module Nucleotide_IUPAC : sig ... end
module PSSM : sig ... end