Sets the global alignment method. More...
#include <seqan3/alignment/configuration/align_config_method.hpp>
Public Member Functions | |
Constructors, destructor and assignment | |
method_global ()=default | |
Defaulted. | |
method_global (method_global const &)=default | |
Defaulted. | |
method_global (method_global &&)=default | |
Defaulted. | |
method_global & | operator= (method_global const &)=default |
Defaulted. | |
method_global & | operator= (method_global &&)=default |
Defaulted. | |
~method_global ()=default | |
Defaulted. | |
constexpr | method_global (seqan3::align_cfg::free_end_gaps_sequence1_leading free_sequence1_leading, seqan3::align_cfg::free_end_gaps_sequence2_leading free_sequence2_leading, seqan3::align_cfg::free_end_gaps_sequence1_trailing free_sequence1_trailing, seqan3::align_cfg::free_end_gaps_sequence2_trailing free_sequence2_trailing) noexcept |
Construct method_global with a specific free end gap configuration. More... | |
Public Attributes | |
bool | free_end_gaps_sequence1_leading {false} |
If set to true , leading gaps in sequence1 are not penalised when computing the optimal alignment. | |
bool | free_end_gaps_sequence1_trailing {false} |
If set to true , trailing gaps in sequence1 are not penalised when computing the optimal alignment. | |
bool | free_end_gaps_sequence2_leading {false} |
If set to true , leading gaps in sequence2 are not penalised when computing the optimal alignment. | |
bool | free_end_gaps_sequence2_trailing {false} |
If set to true , trailing gaps in sequence2 are not penalised when computing the optimal alignment. | |
Sets the global alignment method.
The alignment algorithm can be categorised in different methods. For example, the local and the global alignment are two different methods, while the semi-global alignment is a variation of the global alignment. This differentiation makes it possible to define a subset of configurations that can work with a particular method. Since it is not possible to guess what the desired method for a user is, there is no default and this configuration must always be provided for the alignment algorithm.
|
no-apiinlineconstexprnoexcept |
Construct method_global with a specific free end gap configuration.
[in] | free_sequence1_leading | An instance of seqan3::align_cfg::free_end_gaps_sequence1_leading that indicates whether leading gaps in sequence1 should be free (not penalised). |
[in] | free_sequence2_leading | An instance of seqan3::align_cfg::free_end_gaps_sequence2_leading that indicates whether leading gaps in sequence2 should be free (not penalised). |
[in] | free_sequence1_trailing | An instance of seqan3::align_cfg::free_end_gaps_sequence1_trailing that indicates whether trailing gaps in sequence1 should be free (not penalised). |
[in] | free_sequence2_trailing | An instance of seqan3::align_cfg::free_end_gaps_sequence2_trailing that indicates whether trailing gaps in sequence2 should be free (not penalised). |