SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
seqan3::gap_decorator< inner_type > Class Template Reference

A gap decorator allows the annotation of sequences with gap symbols while leaving the underlying sequence unmodified. More...

#include <seqan3/alignment/decorator/gap_decorator.hpp>

+ Inheritance diagram for seqan3::gap_decorator< inner_type >:

Public Types

using unaligned_sequence_type = inner_type
 The underlying ungapped range type.
 
Range-associated member types
using value_type = gapped< std::ranges::range_value_t< inner_type > >
 The variant type of the alphabet type and gap symbol type (see seqan3::gapped).
 
using reference = value_type
 Use the value type as reference type because the underlying sequence must not be modified.
 
using const_reference = reference
 const_reference type equals reference type equals value type because the underlying sequence must not be modified.
 
using size_type = std::ranges::range_size_t< inner_type >
 The size_type of the underlying sequence.
 
using difference_type = std::ranges::range_difference_t< inner_type >
 The difference type of the underlying sequence.
 

Public Member Functions

Constructors, destructor and assignment
 gap_decorator ()=default
 Default constructor.
 
 gap_decorator (gap_decorator const &)=default
 Defaulted.
 
gap_decoratoroperator= (gap_decorator const &)=default
 Defaulted.
 
 gap_decorator (gap_decorator &&rhs)=default
 Defaulted.
 
gap_decoratoroperator= (gap_decorator &&rhs)=default
 Defaulted.
 
 ~gap_decorator ()=default
 Defaulted.
 
template<typename other_range_t >
requires (!std::same_as<other_range_t, gap_decorator>) && std::same_as<std::remove_cvref_t<other_range_t>, std::remove_cvref_t<inner_type>> && std::ranges::viewable_range<other_range_t>
 gap_decorator (other_range_t &&range)
 Construct with the ungapped range type.
 
size_type size () const
 Returns the total length of the aligned sequence.
 
Iterators
const_iterator begin () const noexcept
 Returns an iterator to the first element of the container.
 
const_iterator cbegin () const noexcept
 Returns an iterator to the first element of the container.
 
const_iterator end () const noexcept
 Returns an iterator pointing behind the last element of the decorator.
 
const_iterator cend () const noexcept
 Returns an iterator pointing behind the last element of the decorator.
 
Element access
reference at (size_type const i)
 Return the i-th element as a reference.
 
const_reference at (size_type const i) const
 Return the i-th element as a reference.
 
reference operator[] (size_type const i) const
 Return the i-th element as a reference.
 

Friends

Comparison operators

Compares two seqan3::gap_decorator 's by underlying sequence and gaps.

Parameters
[in]lhsThe left-hand side gap decorator to compare.
[in]rhsThe right-hand side gap decorator to compare.
Returns
A boolean flag indicating (in)equality of the aligned sequences.

Complexity

Worst case: \(O(n*\log k)\) Constant in case the decorators have not the same number of (consecutive) gaps.

Exceptions

Strong exception guarantee.

bool operator== (gap_decorator const &lhs, gap_decorator const &rhs)
 Checks whether lhs is equal to rhs.
 
bool operator!= (gap_decorator const &lhs, gap_decorator const &rhs)
 Checks whether lhs is not equal to rhs.
 
bool operator< (gap_decorator const &lhs, gap_decorator const &rhs)
 Checks whether lhs is less than rhs.
 
bool operator<= (gap_decorator const &lhs, gap_decorator const &rhs)
 Checks whether lhs is less than or equal to rhs.
 
bool operator> (gap_decorator const &lhs, gap_decorator const &rhs)
 Checks whether lhs is greater than rhs.
 
bool operator>= (gap_decorator const &lhs, gap_decorator const &rhs)
 Checks whether lhs is greater than or equal to rhs.
 

Aligned sequence modifications

iterator insert_gap (const_iterator const it, size_type const count=1)
 Insert a gap of length count at the aligned sequence iterator position.
 
iterator erase_gap (const_iterator const it)
 Erase one gap symbol at the indicated iterator postion.
 
iterator erase_gap (const_iterator const first, const_iterator const last)
 Erase gap symbols at the iterator postions [first, last[.
 
template<typename unaligned_sequence_t >
requires std::assignable_from<gap_decorator &, unaligned_sequence_t>
void assign_unaligned (gap_decorator &dec, unaligned_sequence_t &&unaligned)
 Assigns a new sequence of type seqan3::gap_decorator::unaligned_sequence_type to the decorator.
 

Additional Inherited Members

Detailed Description

template<std::ranges::viewable_range inner_type>
requires std::ranges::random_access_range<inner_type> && std::ranges::sized_range<inner_type> && (std::is_const_v<std::remove_reference_t<inner_type>> || std::ranges::view<inner_type>)
class seqan3::gap_decorator< inner_type >

A gap decorator allows the annotation of sequences with gap symbols while leaving the underlying sequence unmodified.

Template Parameters
inner_typeThe type of range that will be decorated with gaps; must model std::ranges::random_access_range and std::ranges::sized_range.

This class may be used whenever you want to store or compute an alignment. The underlying (ungapped) sequence remains unmodified, and is augmented with gap information. The seqan3::gap_decorator behaves just like a vector over a gapped alphabet when iterating over it, inserting/erasing gaps or accessing a position. The only difference lies in the performance and size overhead (see below).

Performance

n The length of the underlying sequence. k The number of contiguous gaps (not gap symbols). l The total number of gap symbols.

access next random access gap insert/erase at end gap insert/erase random size overhead
decorator \(O(1)\) \(O(\log(k))\) \(O(\log(k))\) \(O(k)\) \(O(k)\)
vector \(O(1)\) \(O(1)\) \(O(1)\) \(O(n)\) \(O(n)\)

The size overhead refers to the space that is needed when using each of the data structures in addition to an already existing ungapped sequence.

Implementation details

This decorator stores a std::set over tuples of (pos, cumulative_size) where every entry represents one contiguous stretch of gaps. pos is the (virtual) insert position in the underlying range and cumulative_size is the length of that contiguous stretch of gaps plus the length of all preceding elements. Resolving random access requires logarithmic access into the set and inserting or removing a gap symbol additionally entails updating all subsequent elements in the set to preserve correct cumulative sizes.

The seqan3::gap_decorator::iterator type

Attention
The iterator of the seqan3::gap_decorator does not model the Cpp17BidirectionalIterator requirements of the STL because dereferencing the iterator returns a proxy and no operator-> is provided. It does model the C++20 std::bidirectional_iterator.

This entity is stable. Since version 3.1.

Member Typedef Documentation

◆ const_reference

template<std::ranges::viewable_range inner_type>
using seqan3::gap_decorator< inner_type >::const_reference = reference

const_reference type equals reference type equals value type because the underlying sequence must not be modified.

This entity is stable. Since version 3.1.

◆ difference_type

template<std::ranges::viewable_range inner_type>
using seqan3::gap_decorator< inner_type >::difference_type = std::ranges::range_difference_t<inner_type>

The difference type of the underlying sequence.

This entity is stable. Since version 3.1.

◆ reference

template<std::ranges::viewable_range inner_type>
using seqan3::gap_decorator< inner_type >::reference = value_type

Use the value type as reference type because the underlying sequence must not be modified.

This entity is stable. Since version 3.1.

◆ size_type

template<std::ranges::viewable_range inner_type>
using seqan3::gap_decorator< inner_type >::size_type = std::ranges::range_size_t<inner_type>

The size_type of the underlying sequence.

This entity is stable. Since version 3.1.

◆ unaligned_sequence_type

template<std::ranges::viewable_range inner_type>
using seqan3::gap_decorator< inner_type >::unaligned_sequence_type = inner_type

The underlying ungapped range type.

This entity is stable. Since version 3.1.

◆ value_type

template<std::ranges::viewable_range inner_type>
using seqan3::gap_decorator< inner_type >::value_type = gapped<std::ranges::range_value_t<inner_type> >

The variant type of the alphabet type and gap symbol type (see seqan3::gapped).

This entity is stable. Since version 3.1.

Constructor & Destructor Documentation

◆ gap_decorator() [1/2]

template<std::ranges::viewable_range inner_type>
seqan3::gap_decorator< inner_type >::gap_decorator ( )
default

Default constructor.

Attention
All operations on a default constructed decorator, except assigning a new range (e.g., seqan3::gap_decorator::assign_unaligned), are undefined behaviour.

This entity is stable. Since version 3.1.

◆ gap_decorator() [2/2]

template<std::ranges::viewable_range inner_type>
template<typename other_range_t >
requires (!std::same_as<other_range_t, gap_decorator>) && std::same_as<std::remove_cvref_t<other_range_t>, std::remove_cvref_t<inner_type>> && std::ranges::viewable_range<other_range_t>
seqan3::gap_decorator< inner_type >::gap_decorator ( other_range_t &&  range)
inline

Construct with the ungapped range type.

This entity is experimental and subject to change in the future. Experimental since version 3.1. This is a non-standard C++ extension.

Member Function Documentation

◆ at() [1/2]

template<std::ranges::viewable_range inner_type>
reference seqan3::gap_decorator< inner_type >::at ( size_type const  i)
inline

Return the i-th element as a reference.

Parameters
iThe element to retrieve.
Returns
A reference of the gapped alphabet type.

Complexity

\(O(\log k)\) where \(k\) is the number of gaps.

Exceptions

Throws std::out_of_range exception if i is out of range.

This entity is stable. Since version 3.1.

◆ at() [2/2]

template<std::ranges::viewable_range inner_type>
const_reference seqan3::gap_decorator< inner_type >::at ( size_type const  i) const
inline

Return the i-th element as a reference.

Parameters
iThe element to retrieve.
Returns
A reference of the gapped alphabet type.

Complexity

\(O(\log k)\) where \(k\) is the number of gaps.

Exceptions

Throws std::out_of_range exception if i is out of range.

This entity is stable. Since version 3.1.

◆ begin()

template<std::ranges::viewable_range inner_type>
const_iterator seqan3::gap_decorator< inner_type >::begin ( ) const
inlinenoexcept

Returns an iterator to the first element of the container.

Returns
Iterator to the first element.

If the container is empty, the returned iterator will be equal to end().

Complexity

Constant.

Exceptions

No-throw guarantee.

This entity is stable. Since version 3.1.

◆ cbegin()

template<std::ranges::viewable_range inner_type>
const_iterator seqan3::gap_decorator< inner_type >::cbegin ( ) const
inlinenoexcept

Returns an iterator to the first element of the container.

Returns
Iterator to the first element.

If the container is empty, the returned iterator will be equal to end().

Complexity

Constant.

Exceptions

No-throw guarantee.

This entity is stable. Since version 3.1.

◆ cend()

template<std::ranges::viewable_range inner_type>
const_iterator seqan3::gap_decorator< inner_type >::cend ( ) const
inlinenoexcept

Returns an iterator pointing behind the last element of the decorator.

Returns
Iterator pointing behind the last element.
Attention
This element acts as a placeholder; attempting to dereference it results in undefined behaviour.

Complexity

Constant.

Exceptions

No-throw guarantee.

This entity is stable. Since version 3.1.

◆ end()

template<std::ranges::viewable_range inner_type>
const_iterator seqan3::gap_decorator< inner_type >::end ( ) const
inlinenoexcept

Returns an iterator pointing behind the last element of the decorator.

Returns
Iterator pointing behind the last element.
Attention
This element acts as a placeholder; attempting to dereference it results in undefined behaviour.

Complexity

Constant.

Exceptions

No-throw guarantee.

This entity is stable. Since version 3.1.

◆ erase_gap() [1/2]

template<std::ranges::viewable_range inner_type>
iterator seqan3::gap_decorator< inner_type >::erase_gap ( const_iterator const  first,
const_iterator const  last 
)
inline

Erase gap symbols at the iterator postions [first, last[.

Parameters
[in]firstThe iterator pointing to the position where to start inserting gaps.
[in]lastThe iterator pointing to the position where to stop erasing gaps.
Returns
Iterator following the last removed element.
Exceptions
seqan3::gap_erase_failureif [first, last[ does not correspond to a consecutive range of seqan3::gap 's.

Complexity

\(O(\log k)\)

This entity is stable. Since version 3.1.

◆ erase_gap() [2/2]

template<std::ranges::viewable_range inner_type>
iterator seqan3::gap_decorator< inner_type >::erase_gap ( const_iterator const  it)
inline

Erase one gap symbol at the indicated iterator postion.

Parameters
itIterator indicating the gap to be erased.
Returns
Iterator following the last removed element.
Exceptions
seqan3::gap_erase_failureif character is no seqan3::gap.

Complexity

\(O(\log k)\)

This entity is stable. Since version 3.1.

◆ insert_gap()

template<std::ranges::viewable_range inner_type>
iterator seqan3::gap_decorator< inner_type >::insert_gap ( const_iterator const  it,
size_type const  count = 1 
)
inline

Insert a gap of length count at the aligned sequence iterator position.

Parameters
itIterator indicating the gap start position in the aligned sequence.
countNumber of gap symbols to be inserted.
Returns
An iterator pointing to the start position of the insertion.

Complexity

Average and worst case (insertion before last gap): \(O(k)\), Best case (back insertion): \(O(\log k)\).

This entity is stable. Since version 3.1.

◆ operator[]()

template<std::ranges::viewable_range inner_type>
reference seqan3::gap_decorator< inner_type >::operator[] ( size_type const  i) const
inline

Return the i-th element as a reference.

Parameters
iThe element to retrieve.
Returns
A reference of the gapped alphabet type.

This function delegates to an iterator seqan3::gap_decorator.

Complexity

\(O(\log k)\) where \(k\) is the number of gaps.

This entity is stable. Since version 3.1.

◆ size()

template<std::ranges::viewable_range inner_type>
size_type seqan3::gap_decorator< inner_type >::size ( ) const
inline

Returns the total length of the aligned sequence.

Returns
The total length of the aligned sequence (gaps included).

Complexity

Constant.

Exceptions

Strong exception guarantee.

This entity is stable. Since version 3.1.

Friends And Related Symbol Documentation

◆ assign_unaligned

template<std::ranges::viewable_range inner_type>
template<typename unaligned_sequence_t >
requires std::assignable_from<gap_decorator &, unaligned_sequence_t>
void assign_unaligned ( gap_decorator< inner_type > &  dec,
unaligned_sequence_t &&  unaligned 
)
friend

Assigns a new sequence of type seqan3::gap_decorator::unaligned_sequence_type to the decorator.

Parameters
[in,out]decThe decorator to modify.
[in]unalignedThe unaligned sequence to assign.

This entity is experimental and subject to change in the future. Experimental since version 3.1.

◆ operator!=

template<std::ranges::viewable_range inner_type>
bool operator!= ( gap_decorator< inner_type > const &  lhs,
gap_decorator< inner_type > const &  rhs 
)
friend

Checks whether lhs is not equal to rhs.

This entity is stable. Since version 3.1.

◆ operator<

template<std::ranges::viewable_range inner_type>
bool operator< ( gap_decorator< inner_type > const &  lhs,
gap_decorator< inner_type > const &  rhs 
)
friend

Checks whether lhs is less than rhs.

This entity is stable. Since version 3.1.

◆ operator<=

template<std::ranges::viewable_range inner_type>
bool operator<= ( gap_decorator< inner_type > const &  lhs,
gap_decorator< inner_type > const &  rhs 
)
friend

Checks whether lhs is less than or equal to rhs.

This entity is stable. Since version 3.1.

◆ operator==

template<std::ranges::viewable_range inner_type>
bool operator== ( gap_decorator< inner_type > const &  lhs,
gap_decorator< inner_type > const &  rhs 
)
friend

Checks whether lhs is equal to rhs.

This entity is stable. Since version 3.1.

◆ operator>

template<std::ranges::viewable_range inner_type>
bool operator> ( gap_decorator< inner_type > const &  lhs,
gap_decorator< inner_type > const &  rhs 
)
friend

Checks whether lhs is greater than rhs.

This entity is stable. Since version 3.1.

◆ operator>=

template<std::ranges::viewable_range inner_type>
bool operator>= ( gap_decorator< inner_type > const &  lhs,
gap_decorator< inner_type > const &  rhs 
)
friend

Checks whether lhs is greater than or equal to rhs.

This entity is stable. Since version 3.1.


The documentation for this class was generated from the following file:
Hide me