24namespace seqan3::detail
37template <
typename format_type>
38struct structure_file_input_format_exposer :
public format_type
44 template <
typename... ts>
45 void read_structure_record(ts &&... args)
75 std::vector<std::set<std::pair<double, size_t>>> &
bpp,
86 v.read_structure_record(f, options,
seq,
id,
bpp,
structure,
energy,
react,
react_err,
comment,
offset)
87 } -> std::same_as<void>;
90 v.read_structure_record(f,
101 } -> std::same_as<void>;
104 v.read_structure_record(f,
115 } -> std::same_as<void>;
119 v.read_structure_record(f,
130 } -> std::same_as<void>;
135#if SEQAN3_DOXYGEN_ONLY(1) 0
204namespace seqan3::detail
213constexpr bool is_type_list_of_structure_file_input_formats_v =
false;
220template <
typename... ts>
221constexpr bool is_type_list_of_structure_file_input_formats_v<
type_list<ts...>> =
230concept 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.
Definition record.hpp:72
@ comment
Comment field of arbitrary content, usually a string.
Definition record.hpp:75
@ structure
Fixed interactions, usually a string of structure alphabet characters.
Definition record.hpp:70
@ bpp
Base pair probability matrix of interactions, usually a matrix of float numbers.
Definition record.hpp:69
@ react
Reactivity values of the sequence characters given in a vector of float numbers.
Definition record.hpp:73
@ react_err
Reactivity error values given in a vector corresponding to seqan3::field::react.
Definition record.hpp:74
@ offset
Sequence (seqan3::field::seq) relative start position (0-based), unsigned value.
Definition record.hpp:66
@ structured_seq
Sequence and fixed interactions combined in one range.
Definition record.hpp:71
@ id
The identifier, usually a string.
Definition record.hpp:63
@ seq
The "sequence", usually a range of nucleotides or amino acids.
Definition record.hpp:62
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
Provides seqan3::rna5, container aliases and string literals.
Type that contains multiple types.
Definition type_list.hpp:26
Provides the composite of nucleotide with structure alphabets.
Provides seqan3::type_list.
Provides the WUSS format for RNA structure.