package biocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
include module type of struct include Biocaml_unix.Strand end

Strand names. There are various conventions for referring to the two strands of DNA. This module provides an of_string function that parses the various conventions into a canonical representation, which we define to be '-' or '+'.

type t = private char

Only valid values are '-' or '+'.

val minus : t
val plus : t
val minus_plus : t -> char

Return '-' or '+'.

val rev_fwd : t -> string

Return "rev" or "fwd".

val of_string : string -> t