108 position_buffer = stream.tellg();
117 throw parse_error{
"An entry has to start with the code word ID."};
119 if constexpr (!detail::decays_to_ignore_v<id_type>)
121 if (options.embl_genbank_complete_header)
143 if (options.truncate_ids)
168 detail::consume(
stream_view | detail::take_line_or_throw);
172 if constexpr (!detail::decays_to_ignore_v<seq_type>)
175 | detail::take_until_or_throw(
is_end);
180 | std::views::transform(
186 +
"char_is_valid_for<"
187 + detail::type_name_as_string<seq_legal_alph_type>
188 +
"> evaluated to false on " + detail::make_printable(c)};
214 seqan3::detail::fast_ostreambuf_iterator
stream_it{*stream.rdbuf()};
218 if constexpr (!detail::decays_to_ignore_v<seq_type>)
222 if constexpr (detail::decays_to_ignore_v<id_type>)
224 throw std::logic_error{
"The ID field may not be set to ignore when writing embl files."};
228 if (std::ranges::empty(
id))
246 if constexpr (detail::decays_to_ignore_v<seq_type>)
248 throw std::logic_error{
"The SEQ field may not be set to ignore when writing embl files."};
271 using subrange_t = std::ranges::subrange<
decltype(
it),
decltype(
it), std::ranges::subrange_kind::sized>;
Core alphabet concept and free function/type trait wrappers.
T back_inserter(T... args)
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 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
constexpr auto repeat_n
A view factory that repeats a given value n times.
Definition repeat_n.hpp:88
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::views::repeat_n.
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 embl_genbank_complete_header
Complete header given for embl or genbank.
Definition sequence_file/output_options.hpp:42
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.