 |
SeqAn3
3.0.2
The Modern C++ library for sequence analysis.
|
|
Go to the documentation of this file.
32 #include <seqan3/io/detail/record.hpp>
143 template <detail::fields_specialisation selected_field_ids_ =
160 detail::type_list_of_alignment_file_output_formats valid_formats_ = type_list<format_sam, format_bam>,
161 typename ref_ids_type = ref_info_not_given>
195 static_assert([] () constexpr
197 for (
field f : selected_field_ids::as_array)
198 if (!field_ids::contains(f))
202 "You selected a field that is not valid for alignment files, "
203 "please refer to the documentation of "
204 "seqan3::alignment_file_output::field_ids for the accepted values.");
222 using iterator = detail::out_file_iterator<alignment_file_output>;
274 primary_stream->rdbuf()->pubsetbuf(stream_buffer.
data(), stream_buffer.
size());
276 std::ios_base::out | std::ios::binary);
279 if (!primary_stream->good())
280 throw file_open_error{
"Could not open file " + filename.
string() +
" for writing."};
283 secondary_stream = detail::make_secondary_ostream(*primary_stream, filename);
286 detail::set_format(format, filename);
305 template <output_stream stream_type, alignment_file_output_format file_format>
307 requires std::same_as<typename std::remove_reference_t<stream_type>::char_type,
stream_char_type>
310 file_format
const & SEQAN3_DOXYGEN_ONLY(format_tag),
312 primary_stream{&stream, stream_deleter_noop},
313 secondary_stream{&stream, stream_deleter_noop},
314 format{detail::alignment_file_output_format_exposer<file_format>{}}
316 static_assert(list_traits::contains<file_format, valid_formats>,
317 "You selected a format that is not in the valid_formats of this file.");
321 template <output_stream stream_type, alignment_file_output_format file_format>
323 requires std::same_as<typename std::remove_reference_t<stream_type>::char_type,
stream_char_type>
326 file_format
const & SEQAN3_DOXYGEN_ONLY(format_tag),
328 primary_stream{
new stream_type{
std::move(stream)}, stream_deleter_default},
329 secondary_stream{&*primary_stream, stream_deleter_noop},
330 format{detail::alignment_file_output_format_exposer<file_format>{}}
332 static_assert(list_traits::contains<file_format, valid_formats>,
333 "You selected a format that is not in the valid_formats of this file.");
366 template <
typename ref_
ids_type_, std::ranges::forward_range ref_lengths_type>
368 requires std::same_as<std::remove_reference_t<ref_ids_type_>, ref_ids_type>
371 ref_ids_type_ && ref_ids,
372 ref_lengths_type && ref_lengths,
377 initialise_header_information(ref_ids, ref_lengths);
401 template <output_stream stream_type,
403 typename ref_ids_type_,
404 std::ranges::forward_range ref_lengths_type>
406 requires std::same_as<std::remove_reference_t<ref_ids_type_>, ref_ids_type>
409 ref_ids_type_ && ref_ids,
410 ref_lengths_type && ref_lengths,
411 file_format
const & SEQAN3_DOXYGEN_ONLY(format_tag),
415 initialise_header_information(ref_ids, ref_lengths);
482 template <
typename record_t>
486 requires { requires detail::is_type_specialisation_of_v<std::remove_cvref_t<record_t>,
record>; }
492 write_record(detail::get_or<field::header_ptr>(r,
nullptr),
496 detail::get_or<field::offset>(r, 0u),
498 detail::get_or<field::ref_id>(r, std::ignore),
500 detail::get_or<field::alignment>(r, default_align_t{}),
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));
531 template <
typename tuple_t>
541 write_record(detail::get_or<selected_field_ids::index_of(
field::header_ptr)>(t,
nullptr),
543 detail::get_or<selected_field_ids::index_of(field::qual)>(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),
549 detail::get_or<selected_field_ids::index_of(
field::alignment)>(t, default_align_t{}),
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{}),
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));
582 template <
typename arg_t,
typename ...arg_types>
609 template <
typename rng_t>
615 for (
auto &&
record : range)
648 template <
typename rng_t>
659 template <
typename rng_t>
678 return *secondary_stream;
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."};
718 stream_ptr_t primary_stream{
nullptr, stream_deleter_noop};
720 stream_ptr_t secondary_stream{
nullptr, stream_deleter_noop};
723 using format_type =
typename detail::variant_from_tags<
valid_formats,
724 detail::alignment_file_output_format_exposer>::type;
731 using header_type = alignment_file_header<std::conditional_t<std::same_as<ref_ids_type, ref_info_not_given>,
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)
744 header_ptr = std::make_unique<alignment_file_header<ref_ids_type>>(std::forward<ref_ids_type_>(ref_ids));
746 for (int32_t idx = 0; idx < std::ranges::distance(ref_ids); ++idx)
748 header_ptr->ref_id_info.emplace_back(ref_lengths[idx],
"");
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_>>)
754 auto &&
id = header_ptr->ref_ids()[idx];
759 header_ptr->ref_dict[header_ptr->ref_ids()[idx]] = idx;
765 template <
typename record_header_ptr_t,
typename ...pack_type>
766 void write_record(record_header_ptr_t && record_header_ptr, pack_type && ...remainder)
768 static_assert((
sizeof...(pack_type) == 15),
"Wrong parameter list passed to write_record.");
770 assert(!
format.valueless_by_exception());
775 if constexpr (!std::same_as<record_header_ptr_t, std::nullptr_t>)
777 f.write_alignment_record(*secondary_stream,
780 std::forward<pack_type>(remainder)...);
782 else if constexpr (std::same_as<ref_ids_type, ref_info_not_given>)
784 f.write_alignment_record(*secondary_stream,
787 std::forward<pack_type>(remainder)...);
791 f.write_alignment_record(*secondary_stream,
794 std::forward<pack_type>(remainder)...);
811 template <detail::fields_specialisation selected_field_
ids>
820 template <output_stream stream_type,
831 template <output_stream stream_type,
842 template <output_stream stream_type,
852 template <output_stream stream_type,
861 std::ranges::forward_range ref_ids_type,
862 std::ranges::forward_range ref_lengths_type>
872 template <std::ranges::forward_range ref_ids_type,
873 std::ranges::forward_range ref_lengths_type>
882 template <output_stream stream_type,
883 std::ranges::forward_range ref_ids_type,
884 std::ranges::forward_range ref_lengths_type,
897 template <output_stream stream_type,
898 std::ranges::forward_range ref_ids_type,
899 std::ranges::forward_range ref_lengths_type,
912 template <output_stream stream_type,
913 std::ranges::forward_range ref_ids_type,
914 std::ranges::forward_range ref_lengths_type,
925 template <output_stream stream_type,
926 std::ranges::forward_range ref_ids_type,
927 std::ranges::forward_range ref_lengths_type,
alignment_file_output(stream_type &, file_format const &, selected_field_ids const &) -> alignment_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 alignment_file_output::ref_ids_t...
alignment_file_output(stream_type &, file_format const &) -> alignment_file_output< typename alignment_file_output<>::selected_field_ids, type_list< file_format >, ref_info_not_given >
Deduces the valid format from input and sets alignment_file_output::ref_ids_type to seqan3::detail::r...
alignment_file_output(std::filesystem::path, selected_field_ids const &) -> alignment_file_output< selected_field_ids, typename alignment_file_output<>::valid_formats, ref_info_not_given >
Deduces selected_field_ids from input and sets alignment_file_output::ref_ids_type to seqan3::detail:...
The options type defines various option members that influence the behavior of all or some formats.
Definition: output_options.hpp:23
Provides helper data structures for the seqan3::alignment_file_output.
void size_type
The size type (void).
Definition: output.hpp:218
Provides various utility functions required only for output.
alignment_file_output_options options
The options are public and its members can be set directly.
Definition: output.hpp:671
meta::list< types... > type_list
Type that contains multiple types, an alias for meta::list.
Definition: type_list.hpp:31
Provides seqan3::tuple_like.
@ offset
Sequence (SEQ) relative start position (0-based), unsigned value.
void const_reference
The const reference type (void).
Definition: output.hpp:216
~alignment_file_output()=default
Destructor is defaulted.
sentinel end() noexcept
Returns a sentinel for comparison with iterator.
Definition: output.hpp:459
@ id
The identifier, usually a string.
alignment_file_output(stream_type &&, ref_ids_type &&, ref_lengths_type &&, file_format const &, selected_field_ids const &) -> alignment_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.
A class for writing alignment files, e.g. SAM, BAL, BLAST, ...
Definition: output.hpp:163
Provides the seqan3::record template and the seqan3::field enum.
This header includes C++17 filesystem support and imports it into namespace std::filesystem (independ...
char stream_char_type
Character type of the stream(s).
Definition: output.hpp:174
alignment_file_output(stream_type &&, file_format const &, selected_field_ids const &) -> alignment_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 alignment_file_output::ref_ids_t...
alignment_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:309
A class template that holds a choice of seqan3::field.
Definition: record.hpp:166
alignment_file_output(stream_type &, ref_ids_type &&, ref_lengths_type &&, file_format const &, selected_field_ids const &) -> alignment_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.
constexpr sequenced_policy seq
Global execution policy object for sequenced execution policy.
Definition: execution.hpp:54
void push_back(record_t &&r)
Write a seqan3::record to the file.
Definition: output.hpp:483
Exposes the value_type of another type.
Definition: pre.hpp:58
auto & header()
Access the file's header.
Definition: output.hpp:692
alignment_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:325
@ cigar
The cigar vector (std::vector<seqan3::cigar>) representing the alignment in SAM/BAM format.
alignment_file_output & operator=(alignment_file_output const &)=delete
Copy assignment is explicitly deleted, because you can't have multiple access to the same file.
auto const move
A view that turns lvalue-references into rvalue-references.
Definition: move.hpp:68
@ none
None of the flags below are set.
void push_back(tuple_t &&t)
Write a record in form of a std::tuple to the file.
Definition: output.hpp:532
@ mapq
The mapping quality of the SEQ alignment, usually a ohred-scaled score.
valid_formats_ valid_formats
A seqan3::type_list with the possible formats.
Definition: output.hpp:172
Provides exceptions used in the I/O module.
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
alignment_file_output & operator=(rng_t &&range)
Write a range of records (or tuples) to the file.
Definition: output.hpp:610
void emplace_back(arg_t &&arg, arg_types &&... args)
Write a record to the file by passing individual fields.
Definition: output.hpp:583
Provides seqan3::alignment_file_output_options.
constexpr size_t size
The size of a type pack.
Definition: traits.hpp:116
alignment_file_output(std::filesystem::path filename, selected_field_ids const &fields_tag=selected_field_ids{})
Construct from filename.
Definition: output.hpp:270
Whether a type behaves like a tuple.
void const_iterator
The const iterator type is void, because files are not const-iterable.
Definition: output.hpp:224
Adaptations of concepts from the Ranges TS.
The SAM tag dictionary class that stores all optional SAM fields.
Definition: sam_tag_dictionary.hpp:325
alignment_file_output(stream_type &, ref_ids_type &&, ref_lengths_type &&, file_format const &) -> alignment_file_output< typename alignment_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 is defaulted.
Type tag which indicates that no reference information has been passed to the alignment file on const...
Definition: misc.hpp:23
alignment_file_output(stream_type &&, ref_ids_type &&, ref_lengths_type &&, file_format const &) -> alignment_file_output< typename alignment_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 is defaulted.
void reference
The reference type (void).
Definition: output.hpp:214
std::default_sentinel_t sentinel
The type returned by end().
Definition: output.hpp:226
field
An enumerator for the fields used in file formats.
Definition: record.hpp:65
selected_field_ids_ selected_field_ids
A seqan3::fields list with the fields selected for the record.
Definition: output.hpp:170
The class template that file records are based on; behaves like an std::tuple.
Definition: record.hpp:226
alignment_file_output(std::filesystem::path const &, ref_ids_type &&, ref_lengths_type &&, selected_field_ids const &) -> alignment_file_output< selected_field_ids, typename alignment_file_output<>::valid_formats, std::remove_reference_t< ref_ids_type >>
Deduces selected_field_ids and ref_ids_type from input. valid_formats is defaulted.
alignment_file_output(stream_type &&, file_format const &) -> alignment_file_output< typename alignment_file_output<>::selected_field_ids, type_list< file_format >, ref_info_not_given >
Deduces the valid format from input and sets alignment_file_output::ref_ids_type to seqan3::detail::r...
friend alignment_file_output & operator|(rng_t &&range, alignment_file_output &f)
Write a range of records (or tuples) to the file.
Definition: output.hpp:649
alignment_file_output(alignment_file_output &&)=default
Move construction is defaulted.
Provides the seqan3::detail::out_file_iterator class template.
iterator begin() noexcept
Returns an iterator to current position in the file.
Definition: output.hpp:440
alignment_file_output & operator=(alignment_file_output &&)=default
Move assignment is defaulted.
@ flag
The alignment flag (bit information), uint16_t value.
friend alignment_file_output operator|(rng_t &&range, alignment_file_output &&f)
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition: output.hpp:660
alignment_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:408
detail::out_file_iterator< alignment_file_output > iterator
The iterator type of this view (an output iterator).
Definition: output.hpp:222
alignment_file_output()=delete
Default constructor is explicitly deleted, you need to give a stream or file name.
alignment_file_output(alignment_file_output const &)=delete
Copy construction is explicitly deleted, because you can't have multiple access to the same file.
Provides traits for seqan3::type_list.
alignment_file_output(std::filesystem::path const &, ref_ids_type &&, ref_lengths_type &&) -> alignment_file_output< typename alignment_file_output<>::selected_field_ids, typename alignment_file_output<>::valid_formats, std::remove_reference_t< ref_ids_type >>
Deduces ref_ids_type from input. Valid formats, and selected_field_ids are defaulted.
alignment_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:370
@ header_ptr
A pointer to the seqan3::alignment_file_header object storing header information.
@ alignment
The (pairwise) alignment stored in an seqan3::alignment object.