120 position_buffer = stream.tellg();
142 seqan3::detail::fast_ostreambuf_iterator
stream_it{*stream.rdbuf()};
145 if constexpr (detail::decays_to_ignore_v<id_type>)
147 throw std::logic_error{
"The ID field may not be set to ignore when writing FASTA files."};
151 if (std::ranges::empty(
id))
158 if constexpr (detail::decays_to_ignore_v<seq_type>)
161 "The SEQ and SEQ_QUAL fields may not both be set to ignore when writing FASTA files."};
175 template <
typename stream_view_t,
typename seq_legal_alph_type,
typename id_type>
183 +
" evaluated to false on " + detail::make_printable(*begin(stream_view))};
185 if constexpr (detail::decays_to_ignore_v<id_type>)
187 detail::consume(stream_view | detail::take_line_or_throw);
191 if (options.truncate_ids)
193#if SEQAN3_WORKAROUND_VIEW_PERFORMANCE
194 auto it = stream_view.begin();
195 auto e = stream_view.end();
198 if (options.fasta_ignore_blanks_before_id)
200 for (; (it != e) && (
is_blank)(*it); ++it)
204 bool at_delimiter =
false;
205 for (; it != e; ++it)
212 id.push_back(
assign_char_to(*it, std::ranges::range_value_t<id_type>{}));
216 throw unexpected_end_of_input{
"FASTA ID line did not end in newline."};
218 for (; (it != e) && ((!
is_char<
'\n'>)(*it)); ++it)
222 if (options.fasta_ignore_blanks_before_id)
225 stream_view | std::views::drop(1)
234 stream_view | std::views::drop(1)
241 detail::consume(stream_view | detail::take_line_or_throw);
246#if SEQAN3_WORKAROUND_VIEW_PERFORMANCE
247 auto it = stream_view.begin();
248 auto e = stream_view.end();
251 if (options.fasta_ignore_blanks_before_id)
253 for (; (it != e) && (
is_blank)(*it); ++it)
257 bool at_delimiter =
false;
258 for (; it != e; ++it)
265 id.push_back(
assign_char_to(*it, std::ranges::range_value_t<id_type>{}));
269 throw unexpected_end_of_input{
"FASTA ID line did not end in newline."};
272 if (options.fasta_ignore_blanks_before_id)
275 | std::views::drop(1)
283 | std::views::drop(1)
293 template <
typename stream_view_t,
typename seq_legal_alph_type,
typename seq_type>
294 void read_seq(stream_view_t & stream_view, sequence_file_input_options<seq_legal_alph_type>
const &, seq_type &
seq)
298 if constexpr (!detail::decays_to_ignore_v<seq_type>)
300 constexpr auto is_legal_alph = char_is_valid_for<seq_legal_alph_type>;
302#if SEQAN3_WORKAROUND_VIEW_PERFORMANCE
303 auto it = stream_view.begin();
304 auto e = stream_view.end();
307 throw unexpected_end_of_input{
"No sequence information given!"};
309 for (; (it != e) && ((!is_id)(*it)); ++it)
315 else if (is_legal_alph(*it))
322 throw parse_error{
std::string{
"Encountered an unexpected letter: "} +
"char_is_valid_for<"
323 + detail::type_name_as_string<seq_legal_alph_type>
324 +
"> evaluated to false on " + detail::make_printable(*it)};
331 throw unexpected_end_of_input{
"No sequence information given!"};
334 stream_view | detail::take_until(is_id)
336 | std::views::transform(
337 [is_legal_alph](
char const c)
339 if (!is_legal_alph(c))
341 throw parse_error{
std::string{
"Encountered an unexpected letter: "}
342 +
"char_is_valid_for<"
343 + detail::type_name_as_string<seq_legal_alph_type>
344 +
"> evaluated to false on " + detail::make_printable(c)};
354 detail::consume(stream_view | detail::take_until(is_id));
359 template <
typename stream_it_t,
typename id_type>
360 void write_id(stream_it_t & stream_it, sequence_file_output_options
const & options, id_type &&
id)
362 if (options.fasta_legacy_id_marker)
367 if (options.fasta_blank_before_id)
370 stream_it.write_range(
id);
371 stream_it.write_end_of_line(options.add_carriage_return);
375 template <
typename stream_it_t,
typename seq_type>
376 void write_seq(stream_it_t & stream_it, sequence_file_output_options
const & options, seq_type &&
seq)
380 if (options.fasta_letters_per_line > 0)
384 auto end = std::ranges::end(char_sequence);
389 auto current_end = it;
390 size_t steps = std::ranges::advance(current_end, options.fasta_letters_per_line, end);
391 using subrange_t = std::ranges::subrange<
decltype(it),
decltype(it), std::ranges::subrange_kind::sized>;
392 it = stream_it.write_range(subrange_t{it, current_end, (options.fasta_letters_per_line - steps)});
393 stream_it.write_end_of_line(options.add_carriage_return);
398 stream_it.write_range(char_sequence);
399 stream_it.write_end_of_line(options.add_carriage_return);
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.
A "pretty printer" for most SeqAn data structures and related types.
Definition debug_stream_type.hpp:79
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
@ seq
The "sequence", usually a range of nucleotides or amino acids.
constexpr auto is_blank
Checks whether c is a blank character.
Definition predicate.hpp:139
constexpr auto is_digit
Checks whether c is a digital character.
Definition predicate.hpp:259
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.
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
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.