SeqAn3  3.0.2
The Modern C++ library for sequence analysis.
trace_directions.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2020, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2020, Knut Reinert & MPI für molekulare Genetik
4 // This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5 // shipped with this file and also available at: https://github.com/seqan/seqan3/blob/master/LICENSE.md
6 // -----------------------------------------------------------------------------------------------------
7 
13 #pragma once
14 
17 
18 namespace seqan3::detail
19 {
20 
26 enum struct trace_directions : uint8_t
27 {
29  none = 0b00000,
31  diagonal = 0b00001,
33  up_open = 0b00010,
35  up = 0b00100,
37  left_open = 0b01000,
39  left = 0b10000
40 };
41 
42 } // namespace seqan3::detail
43 
44 namespace seqan3
45 {
48 template <>
49 constexpr bool add_enum_bitwise_operators<seqan3::detail::trace_directions> = true;
50 } // namespace seqan3
51 
52 namespace seqan3
53 {
54 
73 template <typename char_t>
74 inline debug_stream_type<char_t> & operator<<(debug_stream_type<char_t> & s, detail::trace_directions const trace)
75 {
76  static char const * unicode[32]{ "↺", "↖", "↑", "↖↑", "⇡", "↖⇡", "↑⇡", "↖↑⇡",
77  "←", "↖←", "↑←", "↖↑←", "⇡←", "↖⇡←", "↑⇡←", "↖↑⇡←",
78  "⇠", "↖⇠", "↑⇠", "↖↑⇠", "⇡⇠", "↖⇡⇠", "↑⇡⇠", "↖↑⇡⇠",
79  "←⇠", "↖←⇠", "↑←⇠", "↖↑←⇠", "⇡←⇠", "↖⇡←⇠", "↑⇡←⇠", "↖↑⇡←⇠"};
80 
81  static char const * csv[32]{ "N", "D", "U", "DU", "u", "Du", "Uu", "DUu",
82  "L", "DL", "UL", "DUL", "uL", "DuL", "UuL", "DUuL",
83  "l", "Dl", "Ul", "DUl", "ul", "Dul", "Uul", "DUul",
84  "Ll", "DLl", "ULl", "DULl", "uLl", "DuLl", "UuLl", "DUuLl"};
85 
86  bool is_unicode = (s.flags2() & fmtflags2::utf8) == fmtflags2::utf8;
87  auto const & trace_dir = is_unicode ? unicode : csv;
88 
89  s << trace_dir[static_cast<size_t>(trace)];
90  return s;
91 }
92 
93 } // namespace seqan3
seqan3::utf8
@ utf8
Enables use of non-ASCII UTF8 characters in formatted output.
Definition: debug_stream_type.hpp:31
seqan3::debug_stream_type::flags2
fmtflags2 flags2() const
Retrieve the format flags from the stream.
Definition: debug_stream_type.hpp:194
debug_stream_type.hpp
Provides seqan3::debug_stream and related types.
seqan3::debug_stream_type
A "pretty printer" for most SeqAn data structures and related types.
Definition: debug_stream_type.hpp:71
seqan3
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
add_enum_bitwise_operators.hpp
Provides seqan3::add_enum_bitwise_operators.
std::left
T left(T... args)
seqan3::operator<<
debug_stream_type< char_t > & operator<<(debug_stream_type< char_t > &stream, alignment_t &&alignment)
Stream operator for alignments, which are represented as tuples of aligned sequences.
Definition: debug_stream_alignment.hpp:103
seqan3::none
@ none
No flag is set.
Definition: debug_stream_type.hpp:30