SeqAn3  3.0.3
The Modern C++ library for sequence analysis.
output.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2020, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2020, 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 <seqan3/std/filesystem>
17 #include <fstream>
18 #include <seqan3/std/ranges>
19 #include <string>
20 #include <string_view>
21 #include <variant>
22 #include <vector>
23 
28 #include <seqan3/io/exception.hpp>
29 #include <seqan3/io/record.hpp>
39 
40 namespace seqan3
41 {
42 
43 // ----------------------------------------------------------------------------
44 // sam_file_output
45 // ----------------------------------------------------------------------------
46 
144 template <detail::fields_specialisation selected_field_ids_ =
145  fields<field::seq,
146  field::id,
152  field::cigar,
153  field::mapq,
154  field::qual,
155  field::flag,
156  field::mate,
157  field::tags,
161  detail::type_list_of_sam_file_output_formats valid_formats_ = type_list<format_sam, format_bam>,
162  typename ref_ids_type = ref_info_not_given>
164 {
165 public:
171  using selected_field_ids = selected_field_ids_;
173  using valid_formats = valid_formats_;
175  using stream_char_type = char;
177 
180  field::seq,
181  field::id,
187  field::cigar,
188  field::mapq,
189  field::flag,
190  field::qual,
191  field::mate,
192  field::tags,
195 
196  static_assert([] () constexpr
197  {
198  for (field f : selected_field_ids::as_array)
199  if (!field_ids::contains(f))
200  return false;
201  return true;
202  }(),
203  "You selected a field that is not valid for alignment files, "
204  "please refer to the documentation of "
205  "seqan3::sam_file_output::field_ids for the accepted values.");
206 
213  using value_type = void;
215  using reference = void;
217  using const_reference = void;
219  using size_type = void;
225  using const_iterator = void;
227  using sentinel = std::default_sentinel_t;
229 
234  sam_file_output() = delete;
236  sam_file_output(sam_file_output const &) = delete;
244  ~sam_file_output() = default;
245 
272  selected_field_ids const & SEQAN3_DOXYGEN_ONLY(fields_tag) = selected_field_ids{}) :
274  {
275  primary_stream->rdbuf()->pubsetbuf(stream_buffer.data(), stream_buffer.size());
276  static_cast<std::basic_ofstream<char> *>(primary_stream.get())->open(filename,
277  std::ios_base::out | std::ios::binary);
278 
279  // open stream
280  if (!primary_stream->good())
281  throw file_open_error{"Could not open file " + filename.string() + " for writing."};
282 
283  // possibly add intermediate compression stream
285 
286  // initialise format handler or throw if format is not found
287  detail::set_format(format, filename);
288  }
289 
306  template <output_stream stream_type, sam_file_output_format file_format>
308  requires std::same_as<typename std::remove_reference_t<stream_type>::char_type, stream_char_type>
310  sam_file_output(stream_type & stream,
311  file_format const & SEQAN3_DOXYGEN_ONLY(format_tag),
312  selected_field_ids const & SEQAN3_DOXYGEN_ONLY(fields_tag) = selected_field_ids{}) :
315  format{detail::sam_file_output_format_exposer<file_format>{}}
316  {
317  static_assert(list_traits::contains<file_format, valid_formats>,
318  "You selected a format that is not in the valid_formats of this file.");
319  }
320 
322  template <output_stream stream_type, sam_file_output_format file_format>
324  requires std::same_as<typename std::remove_reference_t<stream_type>::char_type, stream_char_type>
326  sam_file_output(stream_type && stream,
327  file_format const & SEQAN3_DOXYGEN_ONLY(format_tag),
328  selected_field_ids const & SEQAN3_DOXYGEN_ONLY(fields_tag) = selected_field_ids{}) :
329  primary_stream{new stream_type{std::move(stream)}, stream_deleter_default},
331  format{detail::sam_file_output_format_exposer<file_format>{}}
332  {
333  static_assert(list_traits::contains<file_format, valid_formats>,
334  "You selected a format that is not in the valid_formats of this file.");
335  }
336 
367  template <typename ref_ids_type_, std::ranges::forward_range ref_lengths_type>
369  requires std::same_as<std::remove_reference_t<ref_ids_type_>, ref_ids_type>
372  ref_ids_type_ && ref_ids,
373  ref_lengths_type && ref_lengths,
374  selected_field_ids const & SEQAN3_DOXYGEN_ONLY(fields_tag) = selected_field_ids{}) :
376 
377  {
378  initialise_header_information(ref_ids, ref_lengths);
379  }
380 
402  template <output_stream stream_type,
403  sam_file_output_format file_format,
404  typename ref_ids_type_, // generic type to capture lvalue references
405  std::ranges::forward_range ref_lengths_type>
407  requires std::same_as<std::remove_reference_t<ref_ids_type_>, ref_ids_type>
409  sam_file_output(stream_type && stream,
410  ref_ids_type_ && ref_ids,
411  ref_lengths_type && ref_lengths,
412  file_format const & SEQAN3_DOXYGEN_ONLY(format_tag),
413  selected_field_ids const & SEQAN3_DOXYGEN_ONLY(fields_tag) = selected_field_ids{}) :
414  sam_file_output{std::forward<stream_type>(stream), file_format{}, selected_field_ids{}}
415  {
416  initialise_header_information(ref_ids, ref_lengths);
417  }
419 
441  iterator begin() noexcept
442  {
443  return {*this};
444  }
445 
460  sentinel end() noexcept
461  {
462  return {};
463  }
464 
483  template <typename record_t>
484  void push_back(record_t && r)
486  requires detail::record_like<record_t>
488  {
489  using default_align_t = std::pair<std::span<gapped<char>>, std::span<gapped<char>>>;
490  using default_mate_t = std::tuple<std::string_view, std::optional<int32_t>, int32_t>;
491 
492  write_record(detail::get_or<field::header_ptr>(r, nullptr),
493  detail::get_or<field::seq>(r, std::string_view{}),
494  detail::get_or<field::qual>(r, std::string_view{}),
495  detail::get_or<field::id>(r, std::string_view{}),
496  detail::get_or<field::offset>(r, 0u),
497  detail::get_or<field::ref_seq>(r, std::string_view{}),
498  detail::get_or<field::ref_id>(r, std::ignore),
499  detail::get_or<field::ref_offset>(r, std::optional<int32_t>{}),
500  detail::get_or<field::alignment>(r, default_align_t{}),
501  detail::get_or<field::cigar>(r, std::vector<cigar>{}),
502  detail::get_or<field::flag>(r, sam_flag::none),
503  detail::get_or<field::mapq>(r, 0u),
504  detail::get_or<field::mate>(r, default_mate_t{}),
505  detail::get_or<field::tags>(r, sam_tag_dictionary{}),
506  detail::get_or<field::evalue>(r, 0u),
507  detail::get_or<field::bit_score>(r, 0u));
508  }
509 
531  template <typename tuple_t>
532  void push_back(tuple_t && t)
534  requires tuple_like<tuple_t> && (!detail::record_like<tuple_t>)
536  {
537  using default_align_t = std::pair<std::span<gapped<char>>, std::span<gapped<char>>>;
538  using default_mate_t = std::tuple<std::string_view, std::optional<int32_t>, int32_t>;
539 
540  // index_of might return npos, but this will be handled well by get_or_ignore (and just return ignore)
541  write_record(detail::get_or<selected_field_ids::index_of(field::header_ptr)>(t, nullptr),
542  detail::get_or<selected_field_ids::index_of(field::seq)>(t, std::string_view{}),
543  detail::get_or<selected_field_ids::index_of(field::qual)>(t, std::string_view{}),
544  detail::get_or<selected_field_ids::index_of(field::id)>(t, std::string_view{}),
545  detail::get_or<selected_field_ids::index_of(field::offset)>(t, 0u),
546  detail::get_or<selected_field_ids::index_of(field::ref_seq)>(t, std::string_view{}),
547  detail::get_or<selected_field_ids::index_of(field::ref_id)>(t, std::ignore),
548  detail::get_or<selected_field_ids::index_of(field::ref_offset)>(t, std::optional<int32_t>{}),
549  detail::get_or<selected_field_ids::index_of(field::alignment)>(t, default_align_t{}),
550  detail::get_or<selected_field_ids::index_of(field::cigar)>(t, std::vector<cigar>{}),
551  detail::get_or<selected_field_ids::index_of(field::flag)>(t, sam_flag::none),
552  detail::get_or<selected_field_ids::index_of(field::mapq)>(t, 0u),
553  detail::get_or<selected_field_ids::index_of(field::mate)>(t, default_mate_t{}),
554  detail::get_or<selected_field_ids::index_of(field::tags)>(t, sam_tag_dictionary{}),
555  detail::get_or<selected_field_ids::index_of(field::evalue)>(t, 0u),
556  detail::get_or<selected_field_ids::index_of(field::bit_score)>(t, 0u));
557  }
558 
582  template <typename arg_t, typename ...arg_types>
583  void emplace_back(arg_t && arg, arg_types && ... args)
584  {
585  push_back(std::tie(arg, args...));
586  }
587 
609  template <typename rng_t>
610  sam_file_output & operator=(rng_t && range)
612  requires std::ranges::input_range<rng_t> && tuple_like<std::ranges::range_reference_t<rng_t>>
614  {
615  for (auto && record : range)
616  push_back(std::forward<decltype(record)>(record));
617  return *this;
618  }
619 
648  template <typename rng_t>
649  friend sam_file_output & operator|(rng_t && range, sam_file_output & f)
651  requires std::ranges::input_range<rng_t> && tuple_like<std::ranges::range_reference_t<rng_t>>
653  {
654  f = range;
655  return f;
656  }
657 
659  template <typename rng_t>
660  friend sam_file_output operator|(rng_t && range, sam_file_output && f)
662  requires std::ranges::input_range<rng_t> && tuple_like<std::ranges::range_reference_t<rng_t>>
664  {
665  f = range;
666  return std::move(f);
667  }
669 
672 
677  {
678  return *secondary_stream;
679  }
681 
692  auto & header()
693  {
694  if constexpr (std::same_as<ref_ids_type, ref_info_not_given>)
695  throw std::logic_error{"Please construct your file with reference id and length information in order "
696  "to properly initialise the header before accessing it."};
697 
698  return *header_ptr;
699  }
700 
701 protected:
705 
716 
721 
725 
729 
733  ref_ids_type>>;
734 
737 
739  template <typename ref_ids_type_, typename ref_lengths_type>
740  void initialise_header_information(ref_ids_type_ && ref_ids, ref_lengths_type && ref_lengths)
741  {
742  assert(std::ranges::size(ref_ids) == std::ranges::size(ref_lengths));
743 
744  header_ptr = std::make_unique<sam_file_header<ref_ids_type>>(std::forward<ref_ids_type_>(ref_ids));
745 
746  for (int32_t idx = 0; idx < std::ranges::distance(ref_ids); ++idx)
747  {
748  header_ptr->ref_id_info.emplace_back(ref_lengths[idx], "");
749 
750  if constexpr (std::ranges::contiguous_range<std::ranges::range_reference_t<ref_ids_type_>> &&
751  std::ranges::sized_range<std::ranges::range_reference_t<ref_ids_type_>> &&
752  std::ranges::borrowed_range<std::ranges::range_reference_t<ref_ids_type_>>)
753  {
754  auto && id = header_ptr->ref_ids()[idx];
755  header_ptr->ref_dict[std::span{std::ranges::data(id), std::ranges::size(id)}] = idx;
756  }
757  else
758  {
759  header_ptr->ref_dict[header_ptr->ref_ids()[idx]] = idx;
760  }
761  }
762  }
763 
765  template <typename record_header_ptr_t, typename ...pack_type>
766  void write_record(record_header_ptr_t && record_header_ptr, pack_type && ...remainder)
767  {
768  static_assert((sizeof...(pack_type) == 15), "Wrong parameter list passed to write_record.");
769 
770  assert(!format.valueless_by_exception());
771 
772  std::visit([&] (auto & f)
773  {
774  // use header from record if explicitly given, e.g. file_output = file_input
775  if constexpr (!std::same_as<record_header_ptr_t, std::nullptr_t>)
776  {
777  f.write_alignment_record(*secondary_stream,
778  options,
779  *record_header_ptr,
780  std::forward<pack_type>(remainder)...);
781  }
782  else if constexpr (std::same_as<ref_ids_type, ref_info_not_given>)
783  {
784  f.write_alignment_record(*secondary_stream,
785  options,
786  std::ignore,
787  std::forward<pack_type>(remainder)...);
788  }
789  else
790  {
791  f.write_alignment_record(*secondary_stream,
792  options,
793  *header_ptr,
794  std::forward<pack_type>(remainder)...);
795  }
796  }, format);
797  }
798 
800  friend iterator;
801 };
802 
811 template <detail::fields_specialisation selected_field_ids>
814 
818 template <output_stream stream_type,
819  sam_file_output_format file_format,
820  detail::fields_specialisation selected_field_ids>
821 sam_file_output(stream_type &&, file_format const &, selected_field_ids const &)
823 
827 template <output_stream stream_type,
828  sam_file_output_format file_format,
829  detail::fields_specialisation selected_field_ids>
830 sam_file_output(stream_type &, file_format const &, selected_field_ids const &)
832 
836 template <output_stream stream_type,
837  sam_file_output_format file_format>
838 sam_file_output(stream_type &&, file_format const &)
840 
844 template <output_stream stream_type,
845  sam_file_output_format file_format>
846 sam_file_output(stream_type &, file_format const &)
848 
850 template <detail::fields_specialisation selected_field_ids,
851  std::ranges::forward_range ref_ids_type,
852  std::ranges::forward_range ref_lengths_type>
853 sam_file_output(std::filesystem::path const &, ref_ids_type &&, ref_lengths_type &&, selected_field_ids const &)
857 
859 template <std::ranges::forward_range ref_ids_type,
860  std::ranges::forward_range ref_lengths_type>
861 sam_file_output(std::filesystem::path const &, ref_ids_type &&, ref_lengths_type &&)
865 
867 template <output_stream stream_type,
868  std::ranges::forward_range ref_ids_type,
869  std::ranges::forward_range ref_lengths_type,
870  sam_file_output_format file_format,
871  detail::fields_specialisation selected_field_ids>
872 sam_file_output(stream_type &&, ref_ids_type &&, ref_lengths_type &&, file_format const &, selected_field_ids const &)
874 
876 template <output_stream stream_type,
877  std::ranges::forward_range ref_ids_type,
878  std::ranges::forward_range ref_lengths_type,
879  sam_file_output_format file_format,
880  detail::fields_specialisation selected_field_ids>
881 sam_file_output(stream_type &, ref_ids_type &&, ref_lengths_type &&, file_format const &, selected_field_ids const &)
883 
885 template <output_stream stream_type,
886  std::ranges::forward_range ref_ids_type,
887  std::ranges::forward_range ref_lengths_type,
888  sam_file_output_format file_format>
889 sam_file_output(stream_type &&, ref_ids_type &&, ref_lengths_type &&, file_format const &)
893 
895 template <output_stream stream_type,
896  std::ranges::forward_range ref_ids_type,
897  std::ranges::forward_range ref_lengths_type,
898  sam_file_output_format file_format>
899 sam_file_output(stream_type &, ref_ids_type &&, ref_lengths_type &&, file_format const &)
904 
905 } // namespace seqan3
Output iterator necessary for providing a range-like interface in output file.
Definition: out_file_iterator.hpp:47
Stores the header information of alignment files.
Definition: header.hpp:33
A class for writing alignment files, e.g. SAM, BAL, BLAST, ...
Definition: output.hpp:164
void const_reference
The const reference type (void).
Definition: output.hpp:217
void initialise_header_information(ref_ids_type_ &&ref_ids, ref_lengths_type &&ref_lengths)
Fill the header reference dictionary, with the given info.
Definition: output.hpp:740
sam_file_output(stream_type &&stream, ref_ids_type_ &&ref_ids, ref_lengths_type &&ref_lengths, file_format const &format_tag, selected_field_ids const &fields_tag=selected_field_ids{})
Construct from an existing stream and with specified format.
Definition: output.hpp:409
sam_file_output(stream_type &, ref_ids_type &&, ref_lengths_type &&, file_format const &, selected_field_ids const &) -> sam_file_output< selected_field_ids, type_list< file_format >, std::remove_reference_t< ref_ids_type >>
Deduces selected_field_ids, the valid format, and the ref_ids_type from input.
void size_type
The size type (void).
Definition: output.hpp:219
std::vector< char > stream_buffer
A larger (compared to stl default) stream buffer to use when reading from a file.
Definition: output.hpp:704
friend iterator
Befriend iterator so it can access the buffers.
Definition: output.hpp:800
sam_file_output(stream_type &&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: output.hpp:326
sam_file_output(sam_file_output const &)=delete
Copy construction is explicitly deleted, because you can't have multiple access to the same file.
friend sam_file_output & operator|(rng_t &&range, sam_file_output &f)
Write a range of records (or tuples) to the file.
Definition: output.hpp:649
sam_file_output()=delete
Default constructor is explicitly deleted, you need to give a stream or file name.
static void stream_deleter_noop(std::basic_ostream< stream_char_type > *)
Stream deleter that does nothing (no ownership assumed).
Definition: output.hpp:713
sam_file_output & operator=(rng_t &&range)
Write a range of records (or tuples) to the file.
Definition: output.hpp:610
sam_file_output & operator=(sam_file_output const &)=delete
Copy assignment is explicitly deleted, because you can't have multiple access to the same file.
std::basic_ostream< stream_char_type > & get_stream()
Expose a reference to the secondary stream. [public, but not documented as part of the API].
Definition: output.hpp:676
sam_file_output(std::filesystem::path const &, ref_ids_type &&, ref_lengths_type &&) -> sam_file_output< typename sam_file_output<>::selected_field_ids, typename sam_file_output<>::valid_formats, std::remove_reference_t< ref_ids_type >>
Deduces ref_ids_type from input. Valid formats, and selected_field_ids are set to the default.
format_type format
The actual std::variant holding a pointer to the detected/selected format.
Definition: output.hpp:727
auto & header()
Access the file's header.
Definition: output.hpp:692
std::default_sentinel_t sentinel
The type returned by end().
Definition: output.hpp:227
char stream_char_type
Character type of the stream(s).
Definition: output.hpp:175
sam_file_output(stream_type &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: output.hpp:310
iterator begin() noexcept
Returns an iterator to current position in the file.
Definition: output.hpp:441
sam_file_output(std::filesystem::path const &, ref_ids_type &&, ref_lengths_type &&, selected_field_ids const &) -> sam_file_output< selected_field_ids, typename sam_file_output<>::valid_formats, std::remove_reference_t< ref_ids_type >>
Deduces selected_field_ids and ref_ids_type from input. valid_formats is set to the default.
sentinel end() noexcept
Returns a sentinel for comparison with iterator.
Definition: output.hpp:460
void write_record(record_header_ptr_t &&record_header_ptr, pack_type &&...remainder)
Write record to format.
Definition: output.hpp:766
sam_file_output(std::filesystem::path, selected_field_ids const &) -> sam_file_output< selected_field_ids, typename sam_file_output<>::valid_formats, ref_info_not_given >
Deduces selected_field_ids from input and sets sam_file_output::ref_ids_type to seqan3::detail::ref_i...
void emplace_back(arg_t &&arg, arg_types &&... args)
Write a record to the file by passing individual fields.
Definition: output.hpp:583
void push_back(record_t &&r)
Write a seqan3::record to the file.
Definition: output.hpp:484
std::unique_ptr< header_type > header_ptr
The file header object (will be set on construction).
Definition: output.hpp:736
selected_field_ids_ selected_field_ids
A seqan3::fields list with the fields selected for the record.
Definition: output.hpp:171
sam_file_output & operator=(sam_file_output &&)=default
Move assignment is defaulted.
valid_formats_ valid_formats
A seqan3::type_list with the possible formats.
Definition: output.hpp:173
void reference
The reference type (void).
Definition: output.hpp:215
sam_file_output(stream_type &, ref_ids_type &&, ref_lengths_type &&, file_format const &) -> sam_file_output< typename sam_file_output<>::selected_field_ids, type_list< file_format >, std::remove_reference_t< ref_ids_type >>
Deduces the valid format, and the ref_ids_type from input. selected_field_ids set to the default.
sam_file_output(stream_type &&, file_format const &) -> sam_file_output< typename sam_file_output<>::selected_field_ids, type_list< file_format >, ref_info_not_given >
Deduces the valid format from input and sets sam_file_output::ref_ids_type to seqan3::detail::ref_inf...
sam_file_output(std::filesystem::path filename, selected_field_ids const &fields_tag=selected_field_ids{})
Construct from filename.
Definition: output.hpp:271
sam_file_output(stream_type &&, ref_ids_type &&, ref_lengths_type &&, file_format const &) -> sam_file_output< typename sam_file_output<>::selected_field_ids, type_list< file_format >, std::remove_reference_t< ref_ids_type >>
Deduces the valid format, and the ref_ids_type from input. selected_field_ids set to the default.
static void stream_deleter_default(std::basic_ostream< stream_char_type > *ptr)
Stream deleter with default behaviour (ownership assumed).
Definition: output.hpp:715
stream_ptr_t secondary_stream
The secondary stream is a compression layer on the primary or just points to the primary (no compress...
Definition: output.hpp:720
void push_back(tuple_t &&t)
Write a record in form of a std::tuple to the file.
Definition: output.hpp:532
void value_type
The value type (void).
Definition: output.hpp:213
~sam_file_output()=default
Destructor is defaulted.
sam_file_output_options options
The options are public and its members can be set directly.
Definition: output.hpp:671
sam_file_output(stream_type &&, ref_ids_type &&, ref_lengths_type &&, file_format const &, selected_field_ids const &) -> sam_file_output< selected_field_ids, type_list< file_format >, std::remove_reference_t< ref_ids_type >>
Deduces selected_field_ids, the valid format, and the ref_ids_type from input.
sam_file_output(sam_file_output &&)=default
Move construction is defaulted.
sam_file_output(stream_type &, file_format const &, selected_field_ids const &) -> sam_file_output< selected_field_ids, type_list< file_format >, ref_info_not_given >
Deduces selected_field_ids, and the valid format from input and sets sam_file_output::ref_ids_type to...
sam_file_output(stream_type &&, file_format const &, selected_field_ids const &) -> sam_file_output< selected_field_ids, type_list< file_format >, ref_info_not_given >
Deduces selected_field_ids, and the valid format from input and sets sam_file_output::ref_ids_type to...
sam_file_output(std::filesystem::path const &filename, ref_ids_type_ &&ref_ids, ref_lengths_type &&ref_lengths, selected_field_ids const &fields_tag=selected_field_ids{})
Construct from filename.
Definition: output.hpp:371
stream_ptr_t primary_stream
The primary stream is the user provided stream or the file stream if constructed from filename.
Definition: output.hpp:718
friend sam_file_output operator|(rng_t &&range, sam_file_output &&f)
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition: output.hpp:660
typename detail::variant_from_tags< valid_formats, detail::sam_file_output_format_exposer >::type format_type
Type of the format, an std::variant over the valid_formats.
Definition: output.hpp:724
void const_iterator
The const iterator type is void, because files are not const-iterable.
Definition: output.hpp:225
sam_file_output(stream_type &, file_format const &) -> sam_file_output< typename sam_file_output<>::selected_field_ids, type_list< file_format >, ref_info_not_given >
Deduces the valid format from input and sets sam_file_output::ref_ids_type to seqan3::detail::ref_inf...
The SAM tag dictionary class that stores all optional SAM fields.
Definition: sam_tag_dictionary.hpp:326
T data(T... args)
Provides auxiliary data structures and functions for seqan3::record and seqan3::fields.
This header includes C++17 filesystem support and imports it into namespace std::filesystem (independ...
Provides the seqan3::format_bam.
Provides the seqan3::format_sam.
T forward(T... args)
T get(T... args)
SEQAN3_CONCEPT type_list_of_sam_file_output_formats
Auxiliary concept that checks whether a type is a seqan3::type_list and all types meet seqan3::sam_fi...
Definition: output_format_concept.hpp:214
@ none
None of the flags below are set.
field
An enumerator for the fields used in file formats.
Definition: record.hpp:62
void set_format(format_variant_type &format, std::filesystem::path const &file_name)
Sets the file format according to the file name extension.
Definition: misc.hpp:67
decltype(auto) get_or(record< field_types, field_ids > &r, or_type &&or_value)
Access an element in a std::tuple or seqan3::record; return or_value if not contained.
Definition: record.hpp:170
@ flag
The alignment flag (bit information), uint16_t value.
@ ref_offset
Sequence (seqan3::field::ref_seq) relative start position (0-based), unsigned value.
@ ref_seq
The (reference) "sequence" information, usually a range of nucleotides or amino acids.
@ alignment
The (pairwise) alignment stored in an object that models seqan3::detail::pairwise_alignment.
@ cigar
The cigar vector (std::vector<seqan3::cigar>) representing the alignment in SAM/BAM format.
@ mapq
The mapping quality of the seqan3::field::seq alignment, usually a Phred-scaled score.
@ bit_score
The bit score (statistical significance indicator), unsigned value.
@ offset
Sequence (seqan3::field::seq) relative start position (0-based), unsigned value.
@ mate
The mate pair information given as a std::tuple of reference name, offset and template length.
@ header_ptr
A pointer to the seqan3::sam_file_header object storing header information.
@ ref_id
The identifier of the (reference) sequence that seqan3::field::seq was aligned to.
@ evalue
The e-value (length normalized bit score), double value.
@ id
The identifier, usually a string.
@ tags
The optional tags in the SAM format, stored in a dictionary.
@ seq
The "sequence", usually a range of nucleotides or amino acids.
@ qual
The qualities, usually in Phred score notation.
meta::list< types... > type_list
Type that contains multiple types, an alias for meta::list.
Definition: type_list.hpp:31
constexpr size_t size
The size of a type pack.
Definition: traits.hpp:150
auto const move
A view that turns lvalue-references into rvalue-references.
Definition: move.hpp:70
Provides the seqan3::sam_file_header class.
The generic concept for alignment file out formats.
Whether a type behaves like a tuple.
Provides exceptions used in the I/O module.
Stream concepts.
Provides various utility functions required only for output.
auto make_secondary_ostream(std::basic_ostream< char_t > &primary_stream, std::filesystem::path &filename) -> std::unique_ptr< std::basic_ostream< char_t >, std::function< void(std::basic_ostream< char_t > *)>>
Depending on the given filename/extension, create a compression stream or just forward the primary st...
Definition: misc_output.hpp:40
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
Provides the seqan3::detail::out_file_iterator class template.
Adaptations of concepts from the Ranges TS.
Provides the seqan3::record template and the seqan3::field enum.
Provides seqan3::detail::record_like.
Provides seqan3::sam_file_output_format and auxiliary classes.
Provides seqan3::sam_file_output_options.
Provides helper data structures for the seqan3::sam_file_output.
T size(T... args)
Internal class used to expose the actual format interface to write alignment records into the file.
Definition: output_format_concept.hpp:45
Base class to deduce the std::variant type from format tags.
Definition: misc.hpp:30
A class template that holds a choice of seqan3::field.
Definition: record.hpp:163
static constexpr bool contains(field f)
Whether a field is contained in the parameter pack.
Definition: record.hpp:181
The class template that file records are based on; behaves like an std::tuple.
Definition: record.hpp:223
Type tag which indicates that no reference information has been passed to the alignment file on const...
Definition: sam_flag.hpp:23
The options type defines various option members that influence the behavior of all or some formats.
Definition: output_options.hpp:23
T tie(T... args)
Provides seqan3::tuple_like.
Provides traits for seqan3::type_list.
T visit(T... args)