27#include <seqan3/io/detail/record.hpp>
60template <detail::fields_specialisation selected_field_
ids_ = fields<field::seq, field::
id, field::structure>,
61 detail::type_list_of_structure_file_output_formats val
id_formats_ = type_list<format_vienna>>
92 for (
field f : selected_field_ids::as_array)
93 if (!field_ids::contains(f))
97 "You selected a field that is not valid for structure files, please refer to the documentation "
98 "of structure_file_output::field_ids for the accepted values.");
106 "You may not select field::structured_seq and either of field::seq and field::structure "
107 "at the same time.");
125 using iterator = detail::out_file_iterator<structure_file_output>;
167 primary_stream->rdbuf()->pubsetbuf(stream_buffer.
data(), stream_buffer.
size());
169 ->open(filename, std::ios_base::out | std::ios::binary);
171 if (!primary_stream->good())
172 throw file_open_error{
"Could not open file " + filename.
string() +
" for writing."};
175 secondary_stream = detail::make_secondary_ostream(*primary_stream, filename);
178 detail::set_format(format, filename);
197 template <output_stream stream_t, structure_file_output_format file_format>
198 requires std::same_as<typename std::remove_reference_t<stream_t>::char_type,
char>
200 file_format
const & SEQAN3_DOXYGEN_ONLY(format_tag),
202 primary_stream{&stream, stream_deleter_noop},
203 secondary_stream{&stream, stream_deleter_noop},
204 format{detail::structure_file_output_format_exposer<file_format>{}}
206 static_assert(list_traits::contains<file_format, valid_formats>,
207 "You selected a format that is not in the valid_formats of this file.");
211 template <output_stream stream_t, structure_file_output_format file_format>
212 requires std::same_as<typename std::remove_reference_t<stream_t>::char_type,
char>
214 file_format
const & SEQAN3_DOXYGEN_ONLY(format_tag),
216 primary_stream{
new stream_t{std::move(stream)}, stream_deleter_default},
217 secondary_stream{&*primary_stream, stream_deleter_noop},
218 format{detail::structure_file_output_format_exposer<file_format>{}}
220 static_assert(list_traits::contains<file_format, valid_formats>,
221 "You selected a format that is not in the valid_formats of this file.");
288 template <
typename record_t>
290 requires detail::record_like<record_t>
292 write_record(detail::get_or_ignore<field::seq>(r),
293 detail::get_or_ignore<field::id>(r),
294 detail::get_or_ignore<field::bpp>(r),
295 detail::get_or_ignore<field::structure>(r),
296 detail::get_or_ignore<field::structured_seq>(r),
297 detail::get_or_ignore<field::energy>(r),
298 detail::get_or_ignore<field::react>(r),
299 detail::get_or_ignore<field::react_err>(r),
300 detail::get_or_ignore<field::comment>(r),
301 detail::get_or_ignore<field::offset>(r));
325 template <
typename tuple_t>
330 write_record(detail::get_or_ignore<selected_field_ids::index_of(
field::seq)>(t),
331 detail::get_or_ignore<selected_field_ids::index_of(
field::id)>(t),
332 detail::get_or_ignore<selected_field_ids::index_of(
field::bpp)>(t),
335 detail::get_or_ignore<selected_field_ids::index_of(
field::energy)>(t),
336 detail::get_or_ignore<selected_field_ids::index_of(
field::react)>(t),
338 detail::get_or_ignore<selected_field_ids::index_of(
field::comment)>(t),
339 detail::get_or_ignore<selected_field_ids::index_of(
field::offset)>(t));
365 template <
typename arg_t,
typename... arg_types>
392 template <std::ranges::input_range rng_t>
396 for (
auto &&
record : range)
428 template <std::ranges::input_range rng_t>
437 template <std::ranges::input_range rng_t>
454 return *secondary_stream;
479 stream_ptr_t primary_stream{
nullptr, stream_deleter_noop};
481 stream_ptr_t secondary_stream{
nullptr, stream_deleter_noop};
485 typename detail::variant_from_tags<valid_formats, detail::structure_file_output_format_exposer>::type;
491 template <
typename seq_type,
494 typename structure_type,
495 typename structured_seq_type,
496 typename energy_type,
498 typename comment_type,
499 typename offset_type>
500 void write_record(seq_type &&
seq,
507 react_type && react_error,
511 static_assert(detail::decays_to_ignore_v<structured_seq_type>
512 || (detail::decays_to_ignore_v<seq_type> && detail::decays_to_ignore_v<structure_type>),
513 "You may not select field::structured_seq and either of field::seq and field::structure "
514 "at the same time.");
516 assert(!
format.valueless_by_exception());
520 if constexpr (!detail::decays_to_ignore_v<structured_seq_type>)
522 f.write_structure_record(*secondary_stream,
536 f.write_structure_record(*secondary_stream,
562template <output_stream stream_t,
563 structure_file_output_format file_format,
564 detail::fields_specialisation selected_field_ids>
569template <output_stream stream_t,
A class for writing structured sequence files, e.g. Stockholm, Connect, Vienna, ViennaRNA bpp matrix ...
Definition: io/structure_file/output.hpp:63
std::default_sentinel_t sentinel
The type returned by end().
Definition: io/structure_file/output.hpp:129
void push_back(tuple_t &&t)
Write a record in form of a std::tuple to the file.
Definition: io/structure_file/output.hpp:326
friend structure_file_output & operator|(rng_t &&range, structure_file_output &f)
Write a range of records (or tuples) to the file.
Definition: io/structure_file/output.hpp:429
void const_reference
The const reference type (void).
Definition: io/structure_file/output.hpp:119
friend structure_file_output operator|(rng_t &&range, structure_file_output &&f)
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition: io/structure_file/output.hpp:438
detail::out_file_iterator< structure_file_output > iterator
The iterator type of this view (an output iterator).
Definition: io/structure_file/output.hpp:125
char stream_char_type
Character type of the stream(s).
Definition: io/structure_file/output.hpp:74
structure_file_output & operator=(structure_file_output &&)=default
Move assignment is defaulted.
structure_file_output_options options
The options are public and its members can be set directly.
Definition: io/structure_file/output.hpp:447
selected_field_ids_ selected_field_ids
A seqan3::fields list with the fields selected for the record.
Definition: io/structure_file/output.hpp:70
void push_back(record_t &&r)
Write a seqan3::record to the file.
Definition: io/structure_file/output.hpp:289
structure_file_output()=delete
Default constructor is explicitly deleted, you need to give a stream or file name.
structure_file_output(std::filesystem::path filename, selected_field_ids const &fields_tag=selected_field_ids{})
Construct from filename.
Definition: io/structure_file/output.hpp:163
void emplace_back(arg_t &&arg, arg_types &&... args)
Write a record to the file by passing individual fields.
Definition: io/structure_file/output.hpp:366
structure_file_output & operator=(rng_t &&range)
Write a range of records (or tuples) to the file.
Definition: io/structure_file/output.hpp:393
void size_type
The size type (void).
Definition: io/structure_file/output.hpp:121
structure_file_output(stream_t &&, file_format const &, selected_field_ids const &) -> structure_file_output< selected_field_ids, type_list< file_format > >
Deduction of the selected fields, the file format and the stream type.
void reference
The reference type (void).
Definition: io/structure_file/output.hpp:117
iterator begin() noexcept
Returns an iterator to current position in the file.
Definition: io/structure_file/output.hpp:246
sentinel end() noexcept
Returns a sentinel for comparison with iterator.
Definition: io/structure_file/output.hpp:265
structure_file_output(stream_t &, file_format const &, selected_field_ids const &) -> structure_file_output< selected_field_ids, type_list< file_format > >
This is an overloaded member function, provided for convenience. It differs from the above function o...
structure_file_output & operator=(structure_file_output const &)=delete
Copy assignment is explicitly deleted, because you can't have multiple access to the same file.
structure_file_output(structure_file_output &&)=default
Move construction is defaulted.
structure_file_output(stream_t &&stream, file_format const &format_tag, selected_field_ids const &fields_tag=selected_field_ids{})
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition: io/structure_file/output.hpp:213
void value_type
The value type (void).
Definition: io/structure_file/output.hpp:115
valid_formats_ valid_formats
A seqan3::type_list with the possible formats.
Definition: io/structure_file/output.hpp:72
structure_file_output(stream_t &stream, file_format const &format_tag, selected_field_ids const &fields_tag=selected_field_ids{})
Construct from an existing stream and with specified format.
Definition: io/structure_file/output.hpp:199
void const_iterator
The const iterator type is void, because files are not const-iterable.
Definition: io/structure_file/output.hpp:127
~structure_file_output()=default
Destructor is defaulted.
structure_file_output(structure_file_output const &)=delete
Copy construction is explicitly deleted, because you can't have multiple access to the same file.
Provides seqan3::views::elements.
field
An enumerator for the fields used in file formats.
Definition: record.hpp:63
@ energy
Energy of a folded sequence, represented by one float number.
@ comment
Comment field of arbitrary content, usually a string.
@ structure
Fixed interactions, usually a string of structure alphabet characters.
@ bpp
Base pair probability matrix of interactions, usually a matrix of float numbers.
@ react
Reactivity values of the sequence characters given in a vector of float numbers.
@ react_err
Reactivity error values given in a vector corresponding to seqan3::field::react.
@ offset
Sequence (seqan3::field::seq) relative start position (0-based), unsigned value.
@ structured_seq
Sequence and fixed interactions combined in one range.
@ id
The identifier, usually a string.
@ seq
The "sequence", usually a range of nucleotides or amino acids.
Whether a type behaves like a tuple.
Provides exceptions used in the I/O module.
Provides various utility functions required only for output.
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
Provides the seqan3::detail::out_file_iterator class template.
Provides the seqan3::record template and the seqan3::field enum.
Provides seqan3::detail::record_like.
A class template that holds a choice of seqan3::field.
Definition: record.hpp:128
The class template that file records are based on; behaves like a std::tuple.
Definition: record.hpp:193
The options type defines various option members that influence the behaviour of all or some formats.
Definition: structure_file/output_options.hpp:26
Provides seqan3::structure_file_output_options.
Provides traits for seqan3::type_list.
Provides seqan3::tuple_like.
Provides seqan3::views::convert.
Provides seqan3::views::zip.