SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
translation_genetic_code.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2006-2024 Knut Reinert & Freie Universität Berlin
2// SPDX-FileCopyrightText: 2016-2024 Knut Reinert & MPI für molekulare Genetik
3// SPDX-License-Identifier: BSD-3-Clause
4
10#pragma once
11
13
14namespace seqan3
15{
24enum struct genetic_code : uint8_t
25{
26 canonical = 1,
27 // vert_mitochondrial,
28 // yeast_mitochondrial,
29 // mold_mitochondrial,
30 // invert_mitochondrial,
31 // ciliate,
32 // flatworm_mitochondrial = 9,
33 // euplotid,
34 // prokaryote,
35 // alt_yeast,
36 // ascidian_mitochondrial,
37 // alt_flatworm_mitochondrial,
38 // blepharisma,
39 // chlorophycean_mitochondrial,
40 // trematode_mitochondrial = 21,
41 // scenedesmus_mitochondrial,
42 // thraustochytrium_mitochondrial,
43 // pterobranchia_mitochondrial,
44 // gracilibacteria
45};
46} // namespace seqan3
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
genetic_code
Genetic codes used for translation of nucleotides into amino acids.
Definition translation_genetic_code.hpp:25
@ canonical
The Standard Code.
Provides platform and dependency checks.
Hide me