34#include <seqan3/io/detail/record.hpp>
156 requires std::is_floating_point_v<typename t::bpp_prob>;
173 requires std::is_same_v<typename t::structure_alphabet, dssp9>
180 typename t::template structured_seq_alphabet<typename t::seq_alphabet, typename t::structure_alphabet>,
181 typename t::seq_alphabet,
182 typename t::structure_alphabet>,
183 typename t::template structured_seq_alphabet<typename t::seq_alphabet, typename t::structure_alphabet>>;
190 requires std::is_floating_point_v<typename t::energy_type::value_type>;
193 requires std::is_floating_point_v<typename t::react_type>;
238 template <
typename _seq_alphabet>
247 template <
typename _
id_alphabet>
259 template <
typename _bpp_prob,
typename _bpp_partner>
263 template <
typename _bpp_item>
267 template <
typename _bpp_queue>
276 template <
typename _structure_alphabet>
282 template <
typename _seq_alphabet,
typename _structure_alphabet>
286 template <
typename _structured_seq_alphabet>
300 template <
typename _react_type>
309 template <
typename _comment_alphabet>
335 template <
typename _seq_alphabet,
typename _structure_alphabet>
395 for (
field f : selected_field_ids::as_array)
396 if (!field_ids::contains(f))
400 "You selected a field that is not valid for structure files, please refer to the documentation "
401 "of structure_file_input::field_ids for the accepted values.");
409 "You may not select field::structured_seq and either of field::seq and field::structure "
410 "at the same time.");
418 using seq_type =
typename traits_type::template seq_container<typename traits_type::seq_alphabet>;
420 using id_type =
typename traits_type::template id_container<typename traits_type::id_alphabet>;
422 using bpp_type =
typename traits_type::template bpp_container<
typename traits_type::template bpp_queue<
423 typename traits_type::template bpp_item<typename traits_type::bpp_prob, typename traits_type::bpp_partner>>>;
425 using structure_type =
typename traits_type::template structure_container<typename traits_type::structure_alphabet>;
428 typename traits_type::template structured_seq_alphabet<
typename traits_type::seq_alphabet,
429 typename traits_type::structure_alphabet>>;
433 using react_type =
typename traits_type::template react_container<typename traits_type::react_type>;
435 using comment_type =
typename traits_type::template comment_container<typename traits_type::comment_alphabet>;
471 using iterator = detail::in_file_iterator<structure_file_input>;
514 primary_stream->rdbuf()->pubsetbuf(stream_buffer.
data(), stream_buffer.
size());
516 ->open(filename, std::ios_base::in | std::ios::binary);
518 if (!primary_stream->good())
519 throw file_open_error{
"Could not open file " + filename.
string() +
" for reading."};
522 secondary_stream = detail::make_secondary_istream(*primary_stream, filename);
525 detail::set_format(format, filename);
543 template <input_stream stream_t, structure_file_input_format file_format>
544 requires std::same_as<typename std::remove_reference_t<stream_t>::char_type,
char>
546 file_format
const & SEQAN3_DOXYGEN_ONLY(format_tag),
548 primary_stream{&stream, stream_deleter_noop},
549 format{detail::structure_file_input_format_exposer<file_format>{}}
551 static_assert(list_traits::contains<file_format, valid_formats>,
552 "You selected a format that is not in the valid_formats of this file.");
555 secondary_stream = detail::make_secondary_istream(*primary_stream);
559 template <input_stream stream_t, structure_file_input_format file_format>
560 requires std::same_as<typename std::remove_reference_t<stream_t>::char_type,
char>
562 file_format
const & SEQAN3_DOXYGEN_ONLY(format_tag),
564 primary_stream{
new stream_t{std::move(stream)}, stream_deleter_default},
565 format{detail::structure_file_input_format_exposer<file_format>{}}
567 static_assert(list_traits::contains<file_format, valid_formats>,
568 "You selected a format that is not in the valid_formats of this file.");
571 secondary_stream = detail::make_secondary_istream(*primary_stream);
596 if (!first_record_was_read)
599 first_record_was_read =
true;
686 stream_ptr_t primary_stream{
nullptr, stream_deleter_noop};
688 stream_ptr_t secondary_stream{
nullptr, stream_deleter_noop};
691 bool first_record_was_read{
false};
697 typename detail::variant_from_tags<valid_formats, detail::structure_file_input_format_exposer>::type;
703 void read_next_record()
706 record_buffer.
clear();
709 position_buffer = secondary_stream->tellg();
719 assert(!
format.valueless_by_exception());
727 "You may not select field::structured_seq and field::structure at the same time.");
728 static_assert(!selected_field_ids::contains(
field::seq),
729 "You may not select field::structured_seq and field::seq at the same time.");
730 f.read_structure_record(*secondary_stream,
732 detail::get_or_ignore<field::structured_seq>(record_buffer),
733 detail::get_or_ignore<field::id>(record_buffer),
734 detail::get_or_ignore<field::bpp>(record_buffer),
735 detail::get_or_ignore<field::structured_seq>(record_buffer),
736 detail::get_or_ignore<field::energy>(record_buffer),
737 detail::get_or_ignore<field::react>(record_buffer),
738 detail::get_or_ignore<field::react_err>(record_buffer),
739 detail::get_or_ignore<field::comment>(record_buffer),
740 detail::get_or_ignore<field::offset>(record_buffer));
744 f.read_structure_record(*secondary_stream,
746 detail::get_or_ignore<field::seq>(record_buffer),
747 detail::get_or_ignore<field::id>(record_buffer),
748 detail::get_or_ignore<field::bpp>(record_buffer),
749 detail::get_or_ignore<field::structure>(record_buffer),
750 detail::get_or_ignore<field::energy>(record_buffer),
751 detail::get_or_ignore<field::react>(record_buffer),
752 detail::get_or_ignore<field::react_err>(record_buffer),
753 detail::get_or_ignore<field::comment>(record_buffer),
754 detail::get_or_ignore<field::offset>(record_buffer));
770template <input_stream stream_type,
771 structure_file_input_format file_format,
772 detail::fields_specialisation selected_field_ids>
779template <input_stream stream_type,
Provides seqan3::aa27, container aliases and string literals.
Provides alphabet adaptations for standard char types.
The twenty-seven letter amino acid alphabet..
Definition: aa27.hpp:46
The protein structure alphabet of the characters "HGIEBTSCX"..
Definition: dssp9.hpp:62
The 15 letter RNA alphabet, containing all IUPAC smybols minus the gap..
Definition: rna15.hpp:51
The five letter RNA alphabet of A,C,G,U and the unknown character N..
Definition: rna5.hpp:49
A seqan3::alphabet_tuple_base that joins an aminoacid alphabet with a protein structure alphabet....
Definition: structured_aa.hpp:55
A seqan3::alphabet_tuple_base that joins a nucleotide alphabet with an RNA structure alphabet....
Definition: structured_rna.hpp:56
Provides the dssp format for protein structure.
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.
Provides the seqan3::detail::in_file_iterator class template.
Checks whether from can be explicitly converted to to.
A concept that indicates whether an alphabet represents RNA structure.
A more refined container concept than seqan3::container.
Refines seqan3::alphabet and adds assignability.
Provides exceptions used in the I/O module.
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
Provides seqan3::rna15, container aliases and string literals.
Provides seqan3::rna5, container aliases and string literals.
A class template that holds a choice of seqan3::field.
Definition: record.hpp:128
void clear() noexcept(noexcept(std::apply(expander, std::declval< record & >())))
Clears containers that provide .clear() and (re-)initialises all other elements with = {}.
Definition: record.hpp:238
Type that contains multiple types.
Definition: type_list.hpp:29
Provides seqan3::structure_record.
Provides the composite of aminoacid with structure alphabets.
Provides traits for seqan3::type_list.
Adaptations of concepts from the standard library.