 |
SeqAn3
3.0.1
The Modern C++ library for sequence analysis.
|
|
Go to the documentation of this file.
31 namespace seqan3::detail
44 template <
typename format_type>
45 struct alignment_file_input_format_exposer :
public format_type
51 template <
typename ...ts>
52 void read_alignment_record(ts && ...args)
54 format_type::read_alignment_record(std::forward<ts>(args)...);
76 requires (detail::alignment_file_input_format_exposer<t> & v,
78 alignment_file_input_options<dna5> & options,
80 alignment_file_header<> & header,
85 dna5_vector & ref_seq,
93 sam_tag_dictionary & tag_dict,
120 { v.read_alignment_record(stream,
221 namespace seqan3::detail
229 template <
typename t>
230 constexpr
bool is_type_list_of_alignment_file_input_formats_v =
false;
237 template <
typename ...ts>
238 constexpr
bool is_type_list_of_alignment_file_input_formats_v<
type_list<ts...>> =
246 template <
typename t>
247 SEQAN3_CONCEPT type_list_of_alignment_file_input_formats = is_type_list_of_alignment_file_input_formats_v<t>;
Provides helper data structures for the seqan3::alignment_file_output.
Provides seqan3::dna4, container aliases and string literals.
meta::list< types... > type_list
Type that contains multiple types, an alias for meta::list.
Definition: type_list.hpp:31
Provides the seqan3::sam_tag_dictionary class and auxiliaries.
sam_flag
An enum flag that describes the properties of an aligned read (given as a SAM record).
Definition: misc.hpp:70
constexpr sequenced_policy seq
Global execution policy object for sequenced execution policy.
Definition: execution.hpp:54
Provides seqan3::dna5, container aliases and string literals.
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:36
Provides the seqan3::cigar alphabet.
Provides aliases for qualified.
Provides seqan3::phred42 quality scores.
Provides seqan3::type_list.