58template <matrix matrix_t,
typename first_sequence_t = std::nullopt_t,
typename second_sequence_t = std::nullopt_t>
72 static constexpr bool is_optional_score = is_type_specialisation_of_v<entry_t, std::optional>;
165 size_t row = coordinate.row;
166 size_t col = coordinate.col;
209 assert(masking_matrix.rows() ==
rows());
210 assert(masking_matrix.cols() ==
cols());
232 assert(new_rows <=
rows());
233 assert(new_cols <=
cols());
271 template <
typename ostream_t>
278 auto char_first_sequence = [&]([[maybe_unused]]
size_t const i) ->
std::string
286 auto char_second_sequence = [&]([[maybe_unused]]
size_t const i) ->
std::string
297 size_t const length_bytes = symbol.size();
299 size_t const offset = length_bytes - length;
304 auto print_first_cell = [&](
std::string const & symbol)
306 cout << symbol << symbols.
col_sep;
310 auto print_first_row = [&]
312 print_first_cell(
" ");
315 for (
size_t col = 0; col <
cols() - 1; ++col)
316 print_cell(char_first_sequence(col));
322 auto print_divider = [&]
325 for (
size_t col = 0; col <
cols(); ++col)
338 if (symbols.
row_sep[0] !=
'\0')
343 print_first_cell(symbols.
epsilon);
345 print_first_cell(char_second_sequence(
row - 1));
347 for (
size_t col = 0; col <
cols(); ++col)
357 size_t col_width = 1;
359 for (
size_t col = 0; col <
cols(); ++col)
381 template <
typename value_type>
386 stream << flags << entry;
387 return strstream.
str();
395 for (
auto it = str.cbegin(); it < str.cend(); ++it, ++length)
398 if ((v & 0b1110'0000) == 0b1100'0000)
400 else if ((v & 0b1111'0000) == 0b1110'0000)
402 else if ((v & 0b1111'1000) == 0b1111'0000)
456template <matrix matrix_t>
461template <matrix matrix_t,
typename first_sequence_t,
typename second_sequence_t>
479template <detail::matrix alignment_matrix_t>
494 template <
typename stream_t,
typename arg_t>
495 requires detail::is_type_specialisation_of_v<stream_t, debug_stream_type>
496 constexpr void operator()(stream_t & stream, arg_t && arg)
const
498 print_impl(stream.get_underlying_stream(), stream.flags2(), std::forward<arg_t>(arg));
511 template <
typename stream_t,
typename arg_t>
512 constexpr void operator()(stream_t & stream, arg_t && arg)
const
525 template <
typename stream_t,
typename arg_t>
530 debug.stream_matrix(stream, flags);
A "pretty printer" for most SeqAn data structures and related types.
Definition debug_stream_type.hpp:79
A debug matrix to wrap alignment matrices and sequences and make them printable together.
Definition debug_matrix.hpp:60
std::optional< size_t > _cols
The number of columns the debug matrix should have. Must be at most the size of the original matrix.
Definition debug_matrix.hpp:442
debug_matrix & mask_matrix(row_wise_matrix< bool > masking_matrix) noexcept
Masks entries out of the current matrix. This operations changes the way this.at(i,...
Definition debug_matrix.hpp:207
first_sequence_t const & first_sequence() const noexcept
The first sequence of the sequence alignment.
Definition debug_matrix.hpp:145
debug_matrix(matrix_t &&, first_sequence_t &&, second_sequence_t &&) -> debug_matrix< matrix_t, first_sequence_t, second_sequence_t >
The type deduction guide for the constructor seqan3::detail::debug_matrix(matrix_t,...
static constexpr format_type unicode
The format when printing to a unicode stream.
Definition debug_matrix.hpp:426
static std::string as_string(value_type &&entry, fmtflags2 const flags) noexcept
Convert a value into a std::string.
Definition debug_matrix.hpp:382
size_t rows() const noexcept
The number of rows in the matrix.
Definition debug_matrix.hpp:127
size_t cols() const noexcept
The number of columns in the matrix.
Definition debug_matrix.hpp:136
bool _transpose
Whether the current matrix should be transposed.
Definition debug_matrix.hpp:446
debug_matrix & operator=(debug_matrix &&)=default
Defaulted.
debug_matrix()=default
Defaulted.
debug_matrix(debug_matrix &&)=default
Defaulted.
bool _transpose_mask
Whether the masking matrix should be transposed.
Definition debug_matrix.hpp:448
size_t auto_column_width(fmtflags2 const flags) const noexcept
Determines the largest width of all entries in the matrix, e.g. -152 has width 4.
Definition debug_matrix.hpp:355
debug_matrix(debug_matrix const &)=default
Defaulted.
debug_matrix & sub_matrix(size_t const new_rows, size_t const new_cols) noexcept
Limits the view port of the current matrix.
Definition debug_matrix.hpp:230
static constexpr bool is_traceback_matrix
Whether the value_type is trace_directions.
Definition debug_matrix.hpp:69
debug_matrix & mask_matrix(std::vector< bool > masking_vector) noexcept
Creates the masking_matrix out of the given masking_vector and calls mask_matrix(row_wise_matrix<bool...
Definition debug_matrix.hpp:220
std::conditional_t< is_traceback_matrix||is_optional_score, entry_t, std::optional< entry_t > > value_type
The type of an entry in the matrix.
Definition debug_matrix.hpp:79
second_sequence_t const & second_sequence() const noexcept
The second sequence of the sequence alignment.
Definition debug_matrix.hpp:154
static constexpr bool is_optional_score
Whether a score matrix already returns std::optional scores. (Where std::nullopt means unset/invalid/...
Definition debug_matrix.hpp:72
~debug_matrix()=default
Defaulted.
static constexpr format_type csv
The format when printing to a ascii stream.
Definition debug_matrix.hpp:424
std::optional< row_wise_matrix< bool > > _masking_matrix
The masking matrix.
Definition debug_matrix.hpp:444
value_type reference
The type of a reference to an entry in the matrix.
Definition debug_matrix.hpp:81
static constexpr bool has_second_sequence
Whether the current debug_matrix was given a second_sequence.
Definition debug_matrix.hpp:65
std::optional< size_t > _rows
The number of rows the debug matrix should have. Must be at most the size of the original matrix.
Definition debug_matrix.hpp:440
matrix_t _matrix
The matrix.
Definition debug_matrix.hpp:434
first_sequence_t _first_sequence
The first sequence of the sequence alignment.
Definition debug_matrix.hpp:436
debug_matrix & transpose_matrix() noexcept
Transposes the current matrix.
Definition debug_matrix.hpp:250
debug_matrix(matrix_t matrix)
Construct the matrix out of an existing matrix.
Definition debug_matrix.hpp:101
second_sequence_t _second_sequence
The second sequence of the sequence alignment.
Definition debug_matrix.hpp:438
typename std::remove_reference_t< matrix_t >::value_type entry_t
The entry type.
Definition debug_matrix.hpp:67
void stream_matrix(ostream_t &cout, fmtflags2 const flags) const noexcept
Prints this matrix into the given stream.
Definition debug_matrix.hpp:272
debug_matrix & operator=(debug_matrix const &)=default
Defaulted.
debug_matrix(matrix_t &&) -> debug_matrix< matrix_t >
The type deduction guide for the constructor seqan3::detail::debug_matrix(matrix_t)
const_reference at(matrix_coordinate const &coordinate) const noexcept
A reference to the entry of the matrix at the given coordinate.
Definition debug_matrix.hpp:163
typename std::remove_reference_t< matrix_t >::size_type size_type
The size type.
Definition debug_matrix.hpp:85
std::string entry_at(matrix_coordinate const coordinate, fmtflags2 flags) const noexcept
Same as at(coordinate), but as string.
Definition debug_matrix.hpp:369
debug_matrix(matrix_t matrix, first_sequence_t first_sequence, second_sequence_t second_sequence)
Construct the matrix out of an existing matrix and two sequences.
Definition debug_matrix.hpp:109
static size_t unicode_str_length(std::string const &str) noexcept
The length of the str (traceback symbols are unicode aware).
Definition debug_matrix.hpp:392
std::optional< size_t > column_width
What is the width (number of chars) of an entry. Defaults to auto_column_width.
Definition debug_matrix.hpp:430
static constexpr bool has_first_sequence
Whether the current debug_matrix was given a first_sequence.
Definition debug_matrix.hpp:63
Defines the requirements of a matrix (e.g. score matrices, trace matrices).
Definition matrix_concept.hpp:52
A two dimensional matrix used inside of alignment algorithms.
Definition two_dimensional_matrix.hpp:62
Provides seqan3::debug_stream and related types.
Provides seqan3::debug_stream and related types.
trace_directions
The possible directions a trace can have. The values can be combined by the logical |-operator.
Definition trace_directions.hpp:30
@ row
The corresponding alignment coordinate will be incrementable/decrementable in the row index.
@ up
Trace comes from the above entry.
@ left
Trace comes from the left entry.
@ diagonal
Trace comes from the diagonal entry.
fmtflags2
Flags that change the behaviour of the seqan3::debug_stream.
Definition debug_stream_type.hpp:32
@ utf8
Enables use of non-ASCII UTF8 characters in formatted output.
@ offset
Sequence (seqan3::field::seq) relative start position (0-based), unsigned value.
Provides seqan3::detail::matrix.
The internal SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
SeqAn specific customisations in the standard namespace.
Provides seqan3::debug_stream and related types.
Provides seqan3::debug_stream and related types.
Provides seqan3::detail::row_wise_matrix.
constexpr void operator()(stream_t &stream, arg_t &&arg) const
Prints the alignment matrix into the given stream using ascii formatting.
Definition debug_matrix.hpp:512
void print_impl(stream_t &stream, fmtflags2 const flags, arg_t &&arg) const
Prints the alignment matrix into the given formatted output stream.
Definition debug_matrix.hpp:526
constexpr void operator()(stream_t &stream, arg_t &&arg) const
Prints the alignment matrix into the given stream using formatting specified by seqan3::fmtflags2.
Definition debug_matrix.hpp:496
Definition default_printer.hpp:28
A strong type for designated initialisation of the column index of a matrix.
Definition matrix_coordinate.hpp:29
Strong type for setting the column dimension of a matrix.
Definition two_dimensional_matrix.hpp:29
Strong type for setting the row dimension of a matrix.
Definition two_dimensional_matrix.hpp:37
A strong type for designated initialisation of the row index of a matrix.
Definition matrix_coordinate.hpp:58
Provides type traits for working with templates.
Provides the declaration of seqan3::detail::trace_directions.