27namespace seqan3::detail
40template <
typename format_type>
41struct structure_file_input_format_exposer :
public format_type
47 template <
typename... ts>
48 void read_structure_record(ts &&... args)
50 format_type::read_structure_record(std::forward<ts>(args)...);
73concept structure_file_input_format =
74 requires (detail::structure_file_input_format_exposer<t> & v,
76 structure_file_input_options<rna5, false> & options,
90 v.read_structure_record(f, options,
seq,
id,
bpp,
structure,
energy,
react,
react_err,
comment,
offset)
91 } -> std::same_as<void>;
94 v.read_structure_record(f,
105 } -> std::same_as<void>;
108 v.read_structure_record(f,
119 } -> std::same_as<void>;
122 v.read_structure_record(f,
133 } -> std::same_as<void>;
139#if SEQAN3_DOXYGEN_ONLY(1) 0
208namespace seqan3::detail
217constexpr bool is_type_list_of_structure_file_input_formats_v =
false;
224template <
typename... ts>
225constexpr bool is_type_list_of_structure_file_input_formats_v<type_list<ts...>> =
226 (structure_file_input_format<ts> && ...);
234concept type_list_of_structure_file_input_formats = is_type_list_of_structure_file_input_formats_v<t>;
@ 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.
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:29
Provides seqan3::rna5, container aliases and string literals.
Provides the composite of nucleotide with structure alphabets.
Provides seqan3::type_list.
Provides the WUSS format for RNA structure.