SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
trace_directions.hpp File Reference

Provides the declaration of seqan3::detail::trace_directions. More...

+ Include dependency graph for trace_directions.hpp:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  seqan3
 The main SeqAn3 namespace.
 
namespace  seqan3::detail
 The internal SeqAn3 namespace.
 

Enumerations

enum struct  seqan3::detail::trace_directions : uint8_t {
  seqan3::detail::trace_directions::none = 0b00000 , seqan3::detail::trace_directions::diagonal = 0b00001 , seqan3::detail::trace_directions::up_open = 0b00110 , seqan3::detail::trace_directions::up = 0b00100 ,
  seqan3::detail::trace_directions::left_open = 0b11000 , seqan3::detail::trace_directions::left = 0b10000 , seqan3::detail::trace_directions::carry_up_open = 0b00010 , seqan3::detail::trace_directions::carry_left_open = 0b01000
}
 The possible directions a trace can have. The values can be combined by the logical |-operator. More...
 

Detailed Description

Provides the declaration of seqan3::detail::trace_directions.

Author
Marcel Ehrhardt <marcel.ehrhardt AT fu-berlin.de>
Hide me