Skip to content

Commit

Permalink
fix codon table errors
Browse files Browse the repository at this point in the history
fixes #95
  • Loading branch information
DominikRafacz committed Apr 22, 2022
1 parent 338ac21 commit b52e5ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions inst/include/tidysq/constants/translate_tables.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,16 +109,16 @@ namespace tidysq::constants {
inline const LetterValue CODON<TABLE, 3u, 2u, 3u> = 1u;

template<int TABLE>
inline const LetterValue CODON<TABLE, 3u, 3u, 0u> = 4u;
inline const LetterValue CODON<TABLE, 3u, 3u, 0u> = 9u;

template<int TABLE>
inline const LetterValue CODON<TABLE, 3u, 3u, 1u> = 9u;
inline const LetterValue CODON<TABLE, 3u, 3u, 1u> = 4u;

template<int TABLE>
inline const LetterValue CODON<TABLE, 3u, 3u, 2u> = 4u;
inline const LetterValue CODON<TABLE, 3u, 3u, 2u> = 9u;

template<int TABLE>
inline const LetterValue CODON<TABLE, 3u, 3u, 3u> = 9u;
inline const LetterValue CODON<TABLE, 3u, 3u, 3u> = 4u;


template<>
Expand Down

0 comments on commit b52e5ab

Please sign in to comment.