module BC_DNA: sig endval complement_str : string -> stringval complement_ambiguous_str : string -> string
DNA treating functions without strict types.
|
A or a <-> 0
T or t <-> 1
C or c <-> 2
G or g <-> 3
N or n <-> 4
val dna_to_int : char -> intdna_to_int ch converts a DNA character into a correspoinding integer value.val int_to_dna : int -> charind_to_dna ch converts a integer value into a correspoinding DNA character.