27 template <
typename field_types,
typename field_
ids>
40 using base_t::get_impl;
58 decltype(
auto)
id() &&
63 decltype(
auto)
id() const &&
73 decltype(
auto)
id() const &
178 template <
typename field_types,
typename field_
ids>
179 struct tuple_size<
seqan3::structure_record<field_types, field_ids>> :
180 tuple_size<typename seqan3::structure_record<field_types, field_ids>::base_type>
188 template <
size_t elem_no,
typename field_types,
typename field_
ids>
189 struct tuple_element<elem_no,
seqan3::structure_record<field_types, field_ids>> :
190 tuple_element<elem_no, typename seqan3::structure_record<field_types, field_ids>::base_type>
The record type of seqan3::structure_file_input.
Definition: structure_file/record.hpp:29
structure_record()=default
Defaulted.
decltype(auto) base_pair_probability_matrix() &&
Base pair probability matrix of interactions, usually a matrix of float numbers.
Definition: structure_file/record.hpp:142
decltype(auto) energy() &&
Energy of a folded sequence, represented by one float number.
Definition: structure_file/record.hpp:121
structure_record & operator=(structure_record const &)=default
Defaulted.
decltype(auto) id() &&
The identifier, usually a string.
Definition: structure_file/record.hpp:58
structure_record(structure_record &&)=default
Defaulted.
~structure_record()=default
Defaulted.
decltype(auto) sequence_structure() &&
Fixed interactions, usually a string of structure alphabet characters.
Definition: structure_file/record.hpp:100
structure_record & operator=(structure_record &&)=default
Defaulted.
structure_record(structure_record const &)=default
Defaulted.
The generic concept for a (biological) sequence.
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
SeqAn specific customisations in the standard namespace.
Provides the seqan3::record template and the seqan3::field enum.
The class template that file records are based on; behaves like a std::tuple.
Definition: record.hpp:192
detail::transfer_template_args_onto_t< field_types, std::tuple > base_type
A specialisation of std::tuple.
Definition: record.hpp:217