|
SeqAn3 3.4.0
The Modern C++ library for sequence analysis.
|
Implementation of a masked composite, which extends a given alphabet with a mask. More...
#include <seqan3/alphabet/mask/masked.hpp>
Public Types | |
| using | char_type = alphabet_char_t<sequence_alphabet_type> |
| Equals the char_type of sequence_alphabet_type. | |
| using | sequence_alphabet_type = sequence_alphabet_t |
| First template parameter as member type. | |
Public Member Functions | |
| constexpr masked< sequence_alphabet_t > & | operator= (component_type const alph) noexcept |
| Assignment via a value of one of the components. | |
| constexpr masked< sequence_alphabet_t > & | operator= (indirect_component_type const alph) noexcept |
| Assignment via a value of a subtype that is assignable to one of the components. | |
Constructors, destructor and assignment | |
| constexpr | masked ()=default |
| Defaulted. | |
| constexpr | masked (masked const &)=default |
| Defaulted. | |
| constexpr | masked (masked &&)=default |
| Defaulted. | |
| constexpr masked & | operator= (masked const &)=default |
| Defaulted. | |
| constexpr masked & | operator= (masked &&)=default |
| Defaulted. | |
| ~masked ()=default | |
| Defaulted. | |
Write functions | |
| constexpr masked & | assign_char (char_type const c) noexcept |
| Assign from a character. | |
Read functions | |
| constexpr char_type | to_char () const noexcept |
| Return a character. | |
| Public Member Functions inherited from seqan3::alphabet_tuple_base< masked< sequence_alphabet_t >, sequence_alphabet_t, mask > | |
| constexpr masked< sequence_alphabet_t > & | assign_rank (rank_type const c) noexcept |
| Assign from a numeric value. | |
| constexpr rank_type | to_rank () const noexcept |
| Return the letter's numeric value (rank in the alphabet). | |
| constexpr | alphabet_tuple_base (component_types... components) noexcept |
| Construction from initialiser-list. | |
| constexpr | alphabet_tuple_base (component_type const alph) noexcept |
| Construction via a value of one of the components. | |
| constexpr | alphabet_tuple_base (indirect_component_type const alph) noexcept |
| Construction via a value of a subtype that is assignable to one of the components. | |
| constexpr masked< sequence_alphabet_t > & | operator= (component_type const alph) noexcept |
| Assignment via a value of one of the components. | |
| constexpr masked< sequence_alphabet_t > & | operator= (indirect_component_type const alph) noexcept |
| Assignment via a value of a subtype that is assignable to one of the components. | |
| constexpr | operator type () const noexcept |
| Implicit cast to a single letter. Works only if the type is unique in the type list. | |
| Public Member Functions inherited from seqan3::alphabet_base< derived_type, size, char_t > | |
| constexpr | alphabet_base () noexcept=default |
| Defaulted. | |
| constexpr | alphabet_base (alphabet_base const &) noexcept=default |
| Defaulted. | |
| constexpr | alphabet_base (alphabet_base &&) noexcept=default |
| Defaulted. | |
| constexpr alphabet_base & | operator= (alphabet_base const &) noexcept=default |
| Defaulted. | |
| constexpr alphabet_base & | operator= (alphabet_base &&) noexcept=default |
| Defaulted. | |
| ~alphabet_base () noexcept=default | |
| Defaulted. | |
| constexpr char_type | to_char () const noexcept |
| Return the letter as a character of char_type. | |
| constexpr rank_type | to_rank () const noexcept |
| Return the letter's numeric value (rank in the alphabet). | |
| constexpr derived_type & | assign_char (char_type const chr) noexcept |
| Assign from a character, implicitly converts invalid characters. | |
| constexpr derived_type & | assign_rank (rank_type const c) noexcept |
| Assign from a numeric value. | |
Static Public Attributes | |
| static constexpr detail::min_viable_uint_t< size > | alphabet_size |
| The size of the alphabet, i.e. the number of different values it can take. | |
| Static Public Attributes inherited from seqan3::alphabet_tuple_base< masked< sequence_alphabet_t >, sequence_alphabet_t, mask > | |
| static constexpr detail::min_viable_uint_t< size > | alphabet_size |
| The size of the alphabet, i.e. the number of different values it can take. | |
| Static Public Attributes inherited from seqan3::alphabet_base< derived_type, size, char_t > | |
| static constexpr detail::min_viable_uint_t< size > | alphabet_size = size |
| The size of the alphabet, i.e. the number of different values it can take. | |
Static Protected Attributes | |
| static constexpr std::array< rank_type, detail::size_in_values_v< char_type > > | char_to_rank |
| Char to rank conversion table. | |
| static constexpr std::array< char_type, alphabet_size > | rank_to_char |
| Rank to char conversion table. | |
Related Symbols | |
(Note that these are not member symbols.) | |
| template<typename sequence_alphabet_type> | |
| masked (sequence_alphabet_type &&, mask const &) -> masked< std::decay_t< sequence_alphabet_type > > | |
| Type deduction guide enables usage of masked without specifying template args. | |
Additional Inherited Members | |
| Protected Types inherited from seqan3::alphabet_base< derived_type, size, char_t > | |
| using | char_type = std::conditional_t<std::same_as<char_t, void>, char, char_t> |
| The char representation; conditional needed to make semi alphabet definitions legal. | |
| using | rank_type = detail::min_viable_uint_t<size - 1> |
| The type of the alphabet when represented as a number (e.g. via to_rank()). | |
Implementation of a masked composite, which extends a given alphabet with a mask.
| sequence_alphabet_t | Type of the first letter; must satisfy seqan3::writable_alphabet and std::regular. |
The masked composite represents a seqan3::alphabet_tuple_base of any given alphabet with the masked alphabet. It allows one to specify which portions of a sequence should be masked, without losing additional information by replacing the sequence directly.
| using seqan3::masked< sequence_alphabet_t >::char_type = alphabet_char_t<sequence_alphabet_type> |
| using seqan3::masked< sequence_alphabet_t >::sequence_alphabet_type = sequence_alphabet_t |
First template parameter as member type.
|
inlineconstexprnoexcept |
Assign from a character.
|
inlineconstexprnoexcept |
Assignment via a value of one of the components.
| component_type | One of the component types. Must be uniquely contained in the type list of the composite. |
| alph | The value of a component that should be assigned. |
Note: Since the alphabet_tuple_base is a CRTP base class, we show the working examples with one of its derived classes (seqan3::qualified).
|
inlineconstexprnoexcept |
Assignment via a value of a subtype that is assignable to one of the components.
| indirect_component_type | Type that models seqan3::weakly_assignable_from for one of the component types. |
| alph | The value of a component that should be assigned. |
Note: Since the alphabet_tuple_base is a CRTP base class, we show the working examples with one of its derived classes (seqan3::qualified).
|
inlineconstexprnoexcept |
Return a character.
|
|
static |
The size of the alphabet, i.e. the number of different values it can take.
|
staticconstexprprotected |
Char to rank conversion table.
|
staticconstexprprotected |
Rank to char conversion table.