27 namespace seqan3::detail
40 template <
typename format_type>
41 struct 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)...);
74 requires (detail::structure_file_input_format_exposer<t> & v,
76 structure_file_input_options<rna5, false> & options,
81 std::vector<structured_rna<rna5, wuss51>> & structured_seq,
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>;
201 namespace seqan3::detail
209 template <
typename t>
210 constexpr
bool is_type_list_of_structure_file_input_formats_v =
false;
217 template <
typename... ts>
218 constexpr
bool is_type_list_of_structure_file_input_formats_v<type_list<ts...>> =
226 template <
typename t>
227 concept type_list_of_structure_file_input_formats = is_type_list_of_structure_file_input_formats_v<t>;
requires requires
The rank_type of the semi-alphabet; defined as the return type of seqan3::to_rank....
Definition: alphabet/concept.hpp:164
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.