compact-genome 12.5.0

Representation of genomes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The RNA [IUPAC nucleic acid alphabet][1].
//!
//! This version omits the character T, to avoid the complement of A being ambiguous (T or U).
//!
//! [1]: https://web.archive.org/web/20110811073845/http://www.dna.affrc.go.jp/misc/MPsrch/InfoIUPAC.html

use crate::impl_generic_alphabet;

impl_generic_alphabet!(
    "RNA IUPAC nucleic acid alphabet",
    RnaIupacNucleicAcidAlphabet,
    RnaIupacNucleicAcidCharacter,
    b"ABCDGHKMNRSUVWY",
    b"UVGHCDMKNYWABSR",
);