23namespace seqan3::detail
36template <
typename format_type>
37struct sequence_file_input_format_exposer :
public format_type
43 template <
typename... ts>
44 void read_sequence_record(ts &&... args)
72 std::streampos & position_buffer,
73 std::vector<dna5> &
seq,
75 std::vector<phred42> &
qual,
76 std::vector<qualified<dna5, phred42>> & seq_qual) {
79 { v.read_sequence_record(f, options, position_buffer,
seq,
id,
qual) } -> std::same_as<void>;
80 { v.read_sequence_record(f, options, position_buffer, seq_qual,
id, seq_qual) } -> std::same_as<void>;
82 v.read_sequence_record(f, options, position_buffer, std::ignore, std::ignore, std::ignore)
83 } -> std::same_as<void>;
88#if SEQAN3_DOXYGEN_ONLY(1) 0
137namespace seqan3::detail
146constexpr bool is_type_list_of_sequence_file_input_formats_v =
false;
153template <
typename... ts>
154constexpr bool is_type_list_of_sequence_file_input_formats_v<
type_list<ts...>> =
163concept type_list_of_sequence_file_input_formats = is_type_list_of_sequence_file_input_formats_v<t>;
Provides seqan3::dna5, container aliases and string literals.
@ id
The identifier, usually a string.
Definition record.hpp:63
@ seq
The "sequence", usually a range of nucleotides or amino acids.
Definition record.hpp:62
@ qual
The qualities, usually in Phred score notation.
Definition record.hpp:64
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
Provides seqan3::phred42 quality scores.
Provides quality alphabet composites.
Type that contains multiple types.
Definition type_list.hpp:26
Provides seqan3::type_list.