SeqAn3  3.0.3
The Modern C++ library for sequence analysis.
input.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2021, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2021, Knut Reinert & MPI für molekulare Genetik
4 // This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5 // shipped with this file and also available at: https://github.com/seqan/seqan3/blob/master/LICENSE.md
6 // -----------------------------------------------------------------------------------------------------
7 
13 #pragma once
14 
15 #include <cassert>
16 #include <fstream>
17 #include <limits>
18 #include <optional>
19 #include <string>
20 #include <type_traits>
21 #include <utility>
22 #include <variant>
23 #include <vector>
24 
32 #include <seqan3/io/exception.hpp>
33 #include <seqan3/std/filesystem>
36 #include <seqan3/io/detail/record.hpp>
42 
43 namespace seqan3
44 {
45 // ----------------------------------------------------------------------------
46 // structure_file_input_traits
47 // ----------------------------------------------------------------------------
48 
140 template <typename t>
141 SEQAN3_CONCEPT structure_file_input_traits = requires(t v)
142 {
143  // TODO(joergi-w) The expensive concept checks are currently omitted. Check again when compiler has improved.
144  // sequence
149 
150  // id
153 
154  // bpp
155  requires std::is_floating_point_v<typename t::bpp_prob>;
157 
158 // requires container // TODO check Associative container Concept when implemented
159 // <typename t::template bpp_queue
160 // <typename t::template bpp_item
161 // <typename t::bpp_prob, typename t::bpp_partner>>>
162 // && requires(typename t::template bpp_queue // TODO maybe implement also a version that allows emplace_back
163 // <typename t::template bpp_item
164 // <typename t::bpp_prob, typename t::bpp_partner>> value) { value.emplace(1.0, 1); };
165 // requires sequence_container
166 // <typename t::template bpp_container
167 // <typename t::template bpp_queue
168 // <typename t::template bpp_item
169 // <typename t::bpp_prob, typename t::bpp_partner>>>>;
170 
171  // structure
172  requires std::is_same_v<typename t::structure_alphabet, dssp9> // TODO(joergi-w) add aa_structure_concept
175 
176  // structured sequence: tuple composites of seq and structure
177  requires std::is_base_of_v<alphabet_tuple_base
178  <typename t::template structured_seq_alphabet
179  <typename t::seq_alphabet, typename t::structure_alphabet>,
180  typename t::seq_alphabet, typename t::structure_alphabet>,
181  typename t::template structured_seq_alphabet<typename t::seq_alphabet, typename t::structure_alphabet>>;
182 // requires sequence_container
183 // <typename t::template structured_seq_container
184 // <typename t::template structured_seq_alphabet
185 // <typename t::seq_alphabet, typename t::structure_alphabet>>>;
186 
187  // energy: std::optional of floating point number
188  requires std::is_floating_point_v<typename t::energy_type::value_type>;
189 
190  // reactivity [error]
191  requires std::is_floating_point_v<typename t::react_type>;
193 
194  // comment
197 
198  // offset
200 };
202 
203 // ----------------------------------------------------------------------------
204 // structure_file_input_default_traits
205 // ----------------------------------------------------------------------------
206 
221 {
227  // sequence
228 
231 
234 
236  template <typename _seq_alphabet>
238 
239  // id
240 
242  using id_alphabet = char;
243 
245  template <typename _id_alphabet>
247 
248  // base pair probability structure
249 
251  using bpp_prob = double;
252 
254  using bpp_partner = size_t;
255 
257  template <typename _bpp_prob, typename _bpp_partner>
259 
261  template <typename _bpp_item>
263 
265  template <typename _bpp_queue>
267 
268  // fixed structure
269 
271  using structure_alphabet = wuss51;
272 
274  template <typename _structure_alphabet>
276 
277  // combined sequence and structure
278 
280  template <typename _seq_alphabet, typename _structure_alphabet>
282 
284  template <typename _structured_seq_alphabet>
286 
287  // energy
288 
291 
292  // reactivity [error]
293 
295  using react_type = double;
296 
298  template <typename _react_type>
300 
301  // comment
302 
304  using comment_alphabet = char;
305 
307  template <typename _comment_alphabet>
309 
310  // offset
311 
313  using offset_type = size_t;
315 };
316 
320 {
333  template <typename _seq_alphabet, typename _structure_alphabet>
336 };
337 
338 // ----------------------------------------------------------------------------
339 // structure_file_input
340 // ----------------------------------------------------------------------------
341 
462  detail::fields_specialisation selected_field_ids_ = fields<field::seq, field::id, field::structure>,
463  detail::type_list_of_structure_file_input_formats valid_formats_ = type_list<format_vienna>>
465 {
466 public:
472  using traits_type = traits_type_;
474  using selected_field_ids = selected_field_ids_;
476  using valid_formats = valid_formats_;
478  using stream_char_type = char;
480 
485  field::id,
486  field::bpp,
490  field::react,
493  field::offset>;
494 
495  static_assert([]() constexpr
496  {
497  for (field f : selected_field_ids::as_array)
498  if (!field_ids::contains(f))
499  return false;
500  return true;
501  }(),
502  "You selected a field that is not valid for structure files, please refer to the documentation "
503  "of structure_file_input::field_ids for the accepted values.");
504 
505  static_assert([]() constexpr
506  {
510  }(), "You may not select field::structured_seq and either of field::seq and field::structure "
511  "at the same time.");
512 
519  using seq_type = typename traits_type::template seq_container<typename traits_type::seq_alphabet>;
521  using id_type = typename traits_type::template id_container<typename traits_type::id_alphabet>;
523  using bpp_type = typename traits_type::template bpp_container
524  <typename traits_type::template bpp_queue
525  <typename traits_type::template bpp_item
526  <typename traits_type::bpp_prob, typename traits_type::bpp_partner>>>;
528  using structure_type = typename traits_type::template structure_container
529  <typename traits_type::structure_alphabet>;
531  using structured_seq_type = typename traits_type::template structured_seq_container
532  <typename traits_type::template structured_seq_alphabet
533  <typename traits_type::seq_alphabet, typename traits_type::structure_alphabet>>;
535  using energy_type = typename traits_type::energy_type;
537  using react_type = typename traits_type::template react_container<typename traits_type::react_type>;
539  using comment_type = typename traits_type::template comment_container
540  <typename traits_type::comment_alphabet>;
542  using offset_type = typename traits_type::offset_type;
543 
547 
552 
562  using const_reference = void;
564  using size_type = size_t;
568  using iterator = detail::in_file_iterator<structure_file_input>;
570  using const_iterator = void;
572  using sentinel = std::default_sentinel_t;
574 
590 
608  selected_field_ids const & SEQAN3_DOXYGEN_ONLY(fields_tag) = selected_field_ids{}) :
609  primary_stream{new std::ifstream{}, stream_deleter_default}
610  {
611  primary_stream->rdbuf()->pubsetbuf(stream_buffer.data(), stream_buffer.size());
612  static_cast<std::basic_ifstream<char> *>(primary_stream.get())->open(filename,
613  std::ios_base::in | std::ios::binary);
614 
615  if (!primary_stream->good())
616  throw file_open_error{"Could not open file " + filename.string() + " for reading."};
617 
618  // possibly add intermediate decompression stream
619  secondary_stream = detail::make_secondary_istream(*primary_stream, filename);
620 
621  // initialise format handler
622  detail::set_format(format, filename);
623  }
624 
640  template <input_stream stream_t, structure_file_input_format file_format>
642  requires std::same_as<typename std::remove_reference_t<stream_t>::char_type, char>
644  structure_file_input(stream_t & stream,
645  file_format const & SEQAN3_DOXYGEN_ONLY(format_tag),
646  selected_field_ids const & SEQAN3_DOXYGEN_ONLY(fields_tag) = selected_field_ids{}) :
647  primary_stream{&stream, stream_deleter_noop},
648  format{detail::structure_file_input_format_exposer<file_format>{}}
649  {
650  static_assert(list_traits::contains<file_format, valid_formats>,
651  "You selected a format that is not in the valid_formats of this file.");
652 
653  // possibly add intermediate decompression stream
654  secondary_stream = detail::make_secondary_istream(*primary_stream);
655  }
656 
658  template <input_stream stream_t, structure_file_input_format file_format>
660  requires std::same_as<typename std::remove_reference_t<stream_t>::char_type, char>
662  structure_file_input(stream_t && stream,
663  file_format const & SEQAN3_DOXYGEN_ONLY(format_tag),
664  selected_field_ids const & SEQAN3_DOXYGEN_ONLY(fields_tag) = selected_field_ids{}) :
665  primary_stream{new stream_t{std::move(stream)}, stream_deleter_default},
666  format{detail::structure_file_input_format_exposer<file_format>{}}
667  {
668  static_assert(list_traits::contains<file_format, valid_formats>,
669  "You selected a format that is not in the valid_formats of this file.");
670 
671  // possibly add intermediate compression stream
672  secondary_stream = detail::make_secondary_istream(*primary_stream);
673  }
675 
695  {
696  // buffer first record
697  if (!first_record_was_read)
698  {
699  read_next_record();
700  first_record_was_read = true;
701  }
702 
703  return {*this};
704  }
705 
719  sentinel end() noexcept
720  {
721  return {};
722  }
723 
747  reference front() noexcept
748  {
749  return *begin();
750  }
752 
754  structure_file_input_options<typename traits_type::seq_legal_alphabet,
756 
757 protected:
759 
763  record_type record_buffer;
765  std::vector<char> stream_buffer{std::vector<char>(1'000'000)};
767 
775  static void stream_deleter_noop(std::basic_istream<stream_char_type> *) {}
777  static void stream_deleter_default(std::basic_istream<stream_char_type> * ptr) { delete ptr; }
778 
780  stream_ptr_t primary_stream{nullptr, stream_deleter_noop};
782  stream_ptr_t secondary_stream{nullptr, stream_deleter_noop};
783 
785  bool first_record_was_read{false};
787  bool at_end{false};
788 
790  using format_type = typename detail::variant_from_tags<valid_formats,
791  detail::structure_file_input_format_exposer>::type;
793  format_type format;
795 
797  void read_next_record()
798  {
799  // clear the record
800  record_buffer.clear();
801 
802  // at end if we could not read further
803  if ((std::istreambuf_iterator<stream_char_type>{*secondary_stream} ==
805  {
806  at_end = true;
807  return;
808  }
809 
810  assert(!format.valueless_by_exception());
811  std::visit([&] (auto & f)
812  {
813  // read new record
815  {
817  "You may not select field::structured_seq and field::structure at the same time.");
819  "You may not select field::structured_seq and field::seq at the same time.");
820  f.read_structure_record(*secondary_stream,
821  options,
822  detail::get_or_ignore<field::structured_seq>(record_buffer), // seq
823  detail::get_or_ignore<field::id>(record_buffer),
824  detail::get_or_ignore<field::bpp>(record_buffer),
825  detail::get_or_ignore<field::structured_seq>(record_buffer), // structure
826  detail::get_or_ignore<field::energy>(record_buffer),
827  detail::get_or_ignore<field::react>(record_buffer),
828  detail::get_or_ignore<field::react_err>(record_buffer),
829  detail::get_or_ignore<field::comment>(record_buffer),
830  detail::get_or_ignore<field::offset>(record_buffer));
831  }
832  else
833  {
834  f.read_structure_record(*secondary_stream,
835  options,
836  detail::get_or_ignore<field::seq>(record_buffer),
837  detail::get_or_ignore<field::id>(record_buffer),
838  detail::get_or_ignore<field::bpp>(record_buffer),
839  detail::get_or_ignore<field::structure>(record_buffer),
840  detail::get_or_ignore<field::energy>(record_buffer),
841  detail::get_or_ignore<field::react>(record_buffer),
842  detail::get_or_ignore<field::react_err>(record_buffer),
843  detail::get_or_ignore<field::comment>(record_buffer),
844  detail::get_or_ignore<field::offset>(record_buffer));
845  }
846  }, format);
847  }
848 
850  friend iterator;
851 };
852 
859 template <input_stream stream_type,
860  structure_file_input_format file_format,
861  detail::fields_specialisation selected_field_ids>
862 structure_file_input(stream_type && stream, file_format const &, selected_field_ids const &)
866 
868 template <input_stream stream_type,
869  structure_file_input_format file_format,
870  detail::fields_specialisation selected_field_ids>
871 structure_file_input(stream_type & stream, file_format const &, selected_field_ids const &)
876 
877 } // namespace seqan3
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:63
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 class for reading structured sequence files, e.g. Stockholm, Connect, Vienna, ViennaRNA bpp matrix ...
Definition: input.hpp:465
structure_file_input_options< typename traits_type::seq_legal_alphabet, selected_field_ids::contains(field::structured_seq)> options
The options are public and its members can be set directly.
Definition: input.hpp:755
reference front() noexcept
Return the record we are currently at in the file.
Definition: input.hpp:747
structure_file_input(structure_file_input const &)=delete
Copy construction is explicitly deleted, because you cannot have multiple access to the same file.
typename traits_type::template structure_container< typename traits_type::structure_alphabet > structure_type
The type of the structure field (default std::vector of seqan3::wuss51).
Definition: input.hpp:529
detail::in_file_iterator< structure_file_input > iterator
The iterator type of this view (an input iterator).
Definition: input.hpp:568
typename traits_type::template id_container< typename traits_type::id_alphabet > id_type
The type of the ID field (default std::string).
Definition: input.hpp:521
structure_file_input(stream_type &&stream, file_format const &, selected_field_ids const &) -> structure_file_input< typename structure_file_input<>::traits_type, selected_field_ids, type_list< file_format >>
Deduction of the selected fields, the file format and the stream type.
structure_file_input & operator=(structure_file_input const &)=delete
Copy assignment is explicitly deleted, because you cannot have multiple access to the same file.
structure_file_input(stream_t &&stream, file_format const &format_tag, selected_field_ids const &fields_tag=selected_field_ids{})
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition: input.hpp:662
size_t size_type
An unsigned integer type, usually std::size_t.
Definition: input.hpp:564
typename traits_type::template seq_container< typename traits_type::seq_alphabet > seq_type
The type of the sequence field (default std::vector of seqan3::rna5).
Definition: input.hpp:519
std::default_sentinel_t sentinel
The type returned by end().
Definition: input.hpp:572
structure_record< detail::select_types_with_ids_t< field_types, field_ids, selected_field_ids >, selected_field_ids > record_type
The type of the record, a specialisation of seqan3::record; acts as a tuple of the selected field typ...
Definition: input.hpp:550
typename traits_type::template comment_container< typename traits_type::comment_alphabet > comment_type
The type of the comment field (default double).
Definition: input.hpp:540
char stream_char_type
Character type of the stream(s).
Definition: input.hpp:478
void const_reference
The const_reference type is void, because files are not const-iterable.
Definition: input.hpp:562
structure_file_input()=delete
Default constructor is explicitly deleted, you need to give a stream or file name.
structure_file_input(stream_type &stream, file_format const &, selected_field_ids const &) -> structure_file_input< typename structure_file_input<>::traits_type, selected_field_ids, type_list< file_format >>
This is an overloaded member function, provided for convenience. It differs from the above function o...
traits_type_ traits_type
A traits type that defines aliases and template for storage of the fields.
Definition: input.hpp:472
void const_iterator
The const iterator type is void, because files are not const-iterable.
Definition: input.hpp:570
selected_field_ids_ selected_field_ids
A seqan3::fields list with the fields selected for the record.
Definition: input.hpp:474
structure_file_input & operator=(structure_file_input &&)=default
Move assignment is defaulted.
structure_file_input(structure_file_input &&)=default
Move construction is defaulted.
typename traits_type::template structured_seq_container< typename traits_type::template structured_seq_alphabet< typename traits_type::seq_alphabet, typename traits_type::structure_alphabet > > structured_seq_type
The type of the sequence-structure field (default std::vector of structured_rna<rna5,...
Definition: input.hpp:533
structure_file_input(stream_t &stream, file_format const &format_tag, selected_field_ids const &fields_tag=selected_field_ids{})
Construct from an existing stream and with specified format.
Definition: input.hpp:644
sentinel end() noexcept
Returns a sentinel for comparison with iterator.
Definition: input.hpp:719
iterator begin()
Returns an iterator to current position in the file.
Definition: input.hpp:694
valid_formats_ valid_formats
A seqan3::type_list with the possible formats.
Definition: input.hpp:476
typename traits_type::template bpp_container< typename traits_type::template bpp_queue< typename traits_type::template bpp_item< typename traits_type::bpp_prob, typename traits_type::bpp_partner > >> bpp_type
The type of the base pair probabilies (default std::vector of std::set<std::pair<double,...
Definition: input.hpp:526
typename traits_type::energy_type energy_type
The type of the energy field (default double).
Definition: input.hpp:535
typename traits_type::offset_type offset_type
The type of the offset field (default size_t).
Definition: input.hpp:542
structure_file_input(std::filesystem::path filename, selected_field_ids const &fields_tag=selected_field_ids{})
Construct from filename.
Definition: input.hpp:607
~structure_file_input()=default
Destructor is defaulted.
typename traits_type::template react_container< typename traits_type::react_type > react_type
The type of the reactivity and reactivity error fields (default double).
Definition: input.hpp:537
A seqan3::alphabet_tuple_base that joins an aminoacid alphabet with a protein structure alphabet.
Definition: structured_aa.hpp:56
A seqan3::alphabet_tuple_base that joins a nucleotide alphabet with an RNA structure alphabet.
Definition: structured_rna.hpp:57
T data(T... args)
Provides the dssp format for protein structure.
This header includes C++17 filesystem support and imports it into namespace std::filesystem (independ...
Provides the seqan3::format_vienna.
T format(T... args)
T get(T... args)
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.
constexpr bool contains
Whether a type occurs in a type list or not.
Definition: traits.hpp:231
auto const move
A view that turns lvalue-references into rvalue-references.
Definition: move.hpp:74
Provides the seqan3::detail::in_file_iterator class template.
Resolves to std::ranges::explicitly_convertible_to<type1, type2>(). <dl class="no-api">This entity i...
A concept that indicates whether an alphabet represents RNA structure.
A more refined container concept than seqan3::container.
The generic concept for structure file in formats.
The requirements a traits_type for seqan3::structure_file_input must meet.
Refines seqan3::alphabet and adds assignability.
Provides exceptions used in the I/O module.
Stream concepts.
T is_base_of_v
Provides various utility functions required only for input.
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.
T size(T... args)
A class template that holds a choice of seqan3::field.
Definition: record.hpp:172
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:279
A traits type that specifies input as amino acids.
Definition: input.hpp:320
The default traits for seqan3::structure_file_input.
Definition: input.hpp:221
wuss51 structure_alphabet
The alphabet for a structure annotation is seqan3::phred42.
Definition: input.hpp:271
size_t offset_type
The type of the offset is size_t.
Definition: input.hpp:313
double bpp_prob
The type for a base pair probability is double.
Definition: input.hpp:251
char id_alphabet
The alphabet for an identifier string is char.
Definition: input.hpp:242
char comment_alphabet
The alphabet for a comment string is char.
Definition: input.hpp:304
double react_type
The type of the reactivity and reactivity error is double.
Definition: input.hpp:295
size_t bpp_partner
The type for the partner position of a base pair probability is size_t.
Definition: input.hpp:254
The options type defines various option members that influence the behaviour of all or some formats.
Definition: input_options.hpp:28
Type that contains multiple types.
Definition: type_list.hpp:29
Provides seqan3::structure_file_input_format.
Provides seqan3::structure_file_input_options.
Provides seqan3::structure_record.
Provides the composite of aminoacid with structure alphabets.
Provides traits for seqan3::type_list.
T visit(T... args)