96 template <
typename stream_type,
97 typename seq_legal_alph_type,
98 typename stream_pos_type,
104 stream_pos_type & position_buffer,
107 qual_type & qualities)
112 position_buffer = stream.tellg();
114 auto stream_view = detail::istreambuf(stream);
118 size_t sequence_size_before = 0;
119 size_t sequence_size_after = 0;
120 if constexpr (!detail::decays_to_ignore_v<seq_type>)
121 sequence_size_before = size(
sequence);
124 if (*stream_it !=
'@')
127 + detail::make_printable(*stream_it)};
131#if SEQAN3_WORKAROUND_VIEW_PERFORMANCE
132 auto e = std::ranges::end(stream_view);
133 if constexpr (!detail::decays_to_ignore_v<id_type>)
137 for (; (stream_it != e) && (!(
is_cntrl ||
is_blank))(*stream_it); ++stream_it)
140 id.push_back(*stream_it);
142 id.push_back(
assign_char_to(*stream_it, std::ranges::range_value_t<id_type>{}));
144 for (; (stream_it != e) && (!
is_char<
'\n'>)(*stream_it); ++stream_it)
149 for (; (stream_it != e) && (!
is_char<
'\n'>)(*stream_it); ++stream_it)
152 id.push_back(*stream_it);
154 id.push_back(
assign_char_to(*stream_it, std::ranges::range_value_t<id_type>{}));
160 for (; (stream_it != e) && (!
is_char<
'\n'>)(*stream_it); ++stream_it)
171 if constexpr (!detail::decays_to_ignore_v<seq_type>)
173 for (; (stream_it != e) && (!
is_char<
'+'>)(*stream_it); ++stream_it)
183 if (!char_is_valid_for<seq_legal_alph_type>(*stream_it))
186 + detail::make_printable(*stream_it)};
192 sequence_size_after = size(
sequence);
196 for (; (stream_it != e) && (!
is_char<
'+'>)(*stream_it); ++stream_it)
198 ++sequence_size_after;
205 if (*stream_it !=
'+')
208 + detail::make_printable(*stream_it)};
211 for (; (stream_it != e) && (!
is_char<
'\n'>)(*stream_it); ++stream_it)
220 if constexpr (!detail::decays_to_ignore_v<qual_type>)
222 while (sequence_size_after > sequence_size_before)
229 --sequence_size_after;
232 qualities.push_back(*stream_it);
239 + detail::make_printable(*stream_it)};
249 while (sequence_size_after > sequence_size_before)
255 --sequence_size_after;
262 if ((!
is_char<
'\n'>)(*stream_it))
263 throw parse_error{
"Qualitites longer than sequence."};
270 if constexpr (!detail::decays_to_ignore_v<id_type>)
277 detail::consume(stream_view | detail::take_line_or_throw);
288 detail::consume(stream_view | detail::take_line_or_throw);
292 auto seq_view = stream_view | detail::take_until_or_throw(
is_char<
'+'>)
294 if constexpr (!detail::decays_to_ignore_v<seq_type>)
296 constexpr auto is_legal_alph = char_is_valid_for<seq_legal_alph_type>;
299 | std::views::transform(
300 [is_legal_alph](
char const c)
302 if (!is_legal_alph(c))
305 +
"char_is_valid_for<"
306 + detail::type_name_as_string<seq_legal_alph_type>
307 +
"> evaluated to false on " + detail::make_printable(c)};
313 sequence_size_after = size(
sequence);
317 auto it = begin(seq_view);
318 auto it_end = end(seq_view);
322 ++sequence_size_after;
326 detail::consume(stream_view | detail::take_line_or_throw);
329 auto qview = stream_view | std::views::filter(!
is_space)
330 | detail::take_exactly_or_throw(sequence_size_after - sequence_size_before);
331 if constexpr (!detail::decays_to_ignore_v<qual_type>)
338 detail::consume(qview);
344 template <
typename stream_type,
352 qual_type && qualities)
354 seqan3::detail::fast_ostreambuf_iterator stream_it{*stream.rdbuf()};
357 if constexpr (detail::decays_to_ignore_v<id_type>)
359 throw std::logic_error{
"The ID field may not be set to ignore when writing FASTQ files."};
363 if (std::ranges::empty(
id))
367 stream_it.write_range(
id);
372 if constexpr (detail::decays_to_ignore_v<seq_type>)
375 "The SEQ and SEQ_QUAL fields may not both be set to ignore when writing FASTQ files."};
387 if constexpr (!detail::decays_to_ignore_v<id_type>)
392 stream_it.write_range(
id);
398 if constexpr (detail::decays_to_ignore_v<qual_type>)
401 "The QUAL and SEQ_QUAL fields may not both be set to ignore when writing FASTQ files."};
405 if (std::ranges::empty(qualities))
408 if constexpr (std::ranges::sized_range<seq_type> && std::ranges::sized_range<qual_type>)
410 assert(std::ranges::size(
sequence) == std::ranges::size(qualities));
Provides aliases for qualified.
Core alphabet concept and free function/type trait wrappers.
T back_inserter(T... args)
Provides alphabet adaptations for standard char types.
Provides seqan3::views::char_to.
Provides various utility functions.
Provides various transformation traits used by the range module.
Provides seqan3::dna5, container aliases and string literals.
Provides seqan3::detail::fast_ostreambuf_iterator.
auto const to_char
A view that calls seqan3::to_char() on each element in the input range.
Definition to_char.hpp:60
auto const char_to
A view over an alphabet, given a range of characters.
Definition char_to.hpp:64
constexpr auto assign_char_to
Assign a character to an alphabet object.
Definition alphabet/concept.hpp:517
constexpr auto char_is_valid_for
Returns whether a character is in the valid set of a seqan3::alphabet (usually implies a bijective ma...
Definition alphabet/concept.hpp:661
constexpr auto is_blank
Checks whether c is a blank character.
Definition predicate.hpp:139
constexpr auto is_char
Checks whether a given letter is the same as the template non-type argument.
Definition predicate.hpp:60
constexpr auto is_space
Checks whether c is a space character.
Definition predicate.hpp:122
constexpr auto is_cntrl
Checks whether c is a control character.
Definition predicate.hpp:87
Provides seqan3::detail::ignore_output_iterator for writing to null stream.
This concept encompasses exactly the types char, signed char, unsigned char, wchar_t,...
The generic concept for a (biological) sequence.
Provides various utility functions.
Provides seqan3::detail::istreambuf.
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
SeqAn specific customisations in the standard namespace.
Provides character predicates for tokenisation.
Provides seqan3::sequence_file_output_options.
Thrown if there is a parse error, such as reading an unexpected character from an input stream.
Definition io/exception.hpp:45
The options type defines various option members that influence the behaviour of all or some formats.
Definition sequence_file/output_options.hpp:23
bool add_carriage_return
The default plain text line-ending is "\n", but on Windows an additional carriage return is recommend...
Definition sequence_file/output_options.hpp:39
bool fastq_double_id
Whether to write the ID only '@' or also after '+' line.
Definition sequence_file/output_options.hpp:34
Provides seqan3::views::take_exactly and seqan3::views::take_exactly_or_throw.
Provides seqan3::detail::take_line and seqan3::detail::take_line_or_throw.
Provides seqan3::views::take_until and seqan3::views::take_until_or_throw.
Provides seqan3::views::to_char.
Provides traits to inspect some information of a type, for example its name.
Provides concepts that do not have equivalents in C++20.