SeqAn3 3.3.0-rc.1
The Modern C++ library for sequence analysis.
io/sequence_file/output.hpp
Go to the documentation of this file.
1// -----------------------------------------------------------------------------------------------------
2// Copyright (c) 2006-2022, Knut Reinert & Freie Universität Berlin
3// Copyright (c) 2016-2022, 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 <filesystem>
17#include <fstream>
18#include <ranges>
19#include <string>
20#include <variant>
21#include <vector>
22
29#include <seqan3/io/record.hpp>
43
44namespace seqan3
45{
46
47// ----------------------------------------------------------------------------
48// sequence_file_output
49// ----------------------------------------------------------------------------
50
65template <detail::fields_specialisation selected_field_ids_ = fields<field::seq, field::id, field::qual>,
66 detail::type_list_of_sequence_file_output_formats valid_formats_ =
67 type_list<format_embl, format_fasta, format_fastq, format_genbank, format_sam>>
69{
70public:
76 using selected_field_ids = selected_field_ids_;
78 using valid_formats = valid_formats_;
80 using stream_char_type = char;
82
85
86 static_assert(
87 []() constexpr {
88 for (field f : selected_field_ids::as_array)
89 if (!field_ids::contains(f))
90 return false;
91 return true;
92 }(),
93 "You selected a field that is not valid for sequence files, please refer to the documentation "
94 "of sequence_file_output::field_ids for the accepted values.");
95
102 using value_type = void;
104 using reference = void;
106 using const_reference = void;
108 using size_type = void;
114 using const_iterator = void;
116 using sentinel = std::default_sentinel_t;
118
134
151 selected_field_ids const & SEQAN3_DOXYGEN_ONLY(fields_tag) = selected_field_ids{}) :
153 {
154 primary_stream->rdbuf()->pubsetbuf(stream_buffer.data(), stream_buffer.size());
156 ->open(filename, std::ios_base::out | std::ios::binary);
157
158 if (!primary_stream->good())
159 throw file_open_error{"Could not open file " + filename.string() + " for writing."};
160
161 // possibly add intermediate compression stream
163
164 // initialise format handler or throw if format is not found
165 detail::set_format(format, filename);
166 }
167
183 template <output_stream stream_t, sequence_file_output_format file_format>
184 requires std::same_as<typename std::remove_reference_t<stream_t>::char_type, stream_char_type>
185 sequence_file_output(stream_t & stream,
186 file_format const & SEQAN3_DOXYGEN_ONLY(format_tag),
187 selected_field_ids const & SEQAN3_DOXYGEN_ONLY(fields_tag) = selected_field_ids{}) :
190 format{detail::sequence_file_output_format_exposer<file_format>{}}
191 {
192 static_assert(list_traits::contains<file_format, valid_formats>,
193 "You selected a format that is not in the valid_formats of this file.");
194 }
195
197 template <output_stream stream_t, sequence_file_output_format file_format>
198 requires std::same_as<typename std::remove_reference_t<stream_t>::char_type, stream_char_type>
199 sequence_file_output(stream_t && stream,
200 file_format const & SEQAN3_DOXYGEN_ONLY(format_tag),
201 selected_field_ids const & SEQAN3_DOXYGEN_ONLY(fields_tag) = selected_field_ids{}) :
202 primary_stream{new stream_t{std::move(stream)}, stream_deleter_default},
204 format{detail::sequence_file_output_format_exposer<file_format>{}}
205 {
206 static_assert(list_traits::contains<file_format, valid_formats>,
207 "You selected a format that is not in the valid_formats of this file.");
208 }
210
232 iterator begin() noexcept
233 {
234 return {*this};
235 }
236
251 sentinel end() noexcept
252 {
253 return {};
254 }
255
274 template <typename record_t>
275 void push_back(record_t && r)
276 requires detail::record_like<record_t>
277 {
278 write_record(detail::get_or_ignore<field::seq>(r),
279 detail::get_or_ignore<field::id>(r),
280 detail::get_or_ignore<field::qual>(r));
281 }
282
304 template <typename tuple_t>
305 void push_back(tuple_t && t)
306 requires tuple_like<tuple_t> && (!detail::record_like<tuple_t>)
307 {
308 // index_of might return npos, but this will be handled well by get_or_ignore (and just return ignore)
309 write_record(detail::get_or_ignore<selected_field_ids::index_of(field::seq)>(t),
310 detail::get_or_ignore<selected_field_ids::index_of(field::id)>(t),
311 detail::get_or_ignore<selected_field_ids::index_of(field::qual)>(t));
312 }
313
337 template <typename arg_t, typename... arg_types>
338 void emplace_back(arg_t && arg, arg_types &&... args)
339 {
340 push_back(std::tie(arg, args...));
341 }
342
364 template <std::ranges::input_range rng_t>
367 {
368 for (auto && record : range)
369 push_back(std::forward<decltype(record)>(record));
370 return *this;
371 }
372
400 template <std::ranges::input_range rng_t>
403 {
404 f = range;
405 return f;
406 }
407
409 template <std::ranges::input_range rng_t>
412 {
413 f = range;
414 return std::move(f);
415 }
417
420
425 {
426 return *secondary_stream;
427 }
429
430protected:
434
443 {}
446 {
447 delete ptr;
448 }
449
454
461
463 template <typename seq_t, typename id_t, typename qual_t>
464 void write_record(seq_t && seq, id_t && id, qual_t && qual)
465 {
466 assert(!format.valueless_by_exception());
468 [&](auto & f)
469 {
470 {
471 f.write_sequence_record(*secondary_stream, options, seq, id, qual);
472 }
473 },
474 format);
475 }
476
478 friend iterator;
479};
480
487template <output_stream stream_t, sequence_file_output_format file_format>
489 file_format const &)
492
494template <output_stream stream_t, sequence_file_output_format file_format>
496 file_format const &)
499
501template <output_stream stream_t,
502 sequence_file_output_format file_format,
504sequence_file_output(stream_t &&, file_format const &, selected_field_ids const &)
506
508template <output_stream stream_t,
509 sequence_file_output_format file_format,
511sequence_file_output(stream_t &, file_format const &, selected_field_ids const &)
514} // namespace seqan3
Output iterator necessary for providing a range-like interface in output file.
Definition: out_file_iterator.hpp:47
The generic concept for sequence file out formats.
Definition: sequence_file/output_format_concept.hpp:97
A class for writing sequence files, e.g. FASTA, FASTQ ...
Definition: io/sequence_file/output.hpp:69
static void stream_deleter_noop(std::basic_ostream< stream_char_type > *)
Stream deleter that does nothing (no ownership assumed).
Definition: io/sequence_file/output.hpp:442
sequence_file_output & operator=(sequence_file_output const &)=delete
Copy assignment is explicitly deleted, because you can't have multiple access to the same file.
sequence_file_output(stream_t &, file_format const &, selected_field_ids const &) -> sequence_file_output< selected_field_ids, type_list< file_format > >
This is an overloaded member function, provided for convenience. It differs from the above function o...
sequence_file_output(std::filesystem::path filename, selected_field_ids const &fields_tag=selected_field_ids{})
Construct from filename.
Definition: io/sequence_file/output.hpp:150
sequence_file_output(stream_t &&, file_format const &) -> sequence_file_output< typename sequence_file_output<>::selected_field_ids, type_list< file_format > >
This is an overloaded member function, provided for convenience. It differs from the above function o...
void const_iterator
The const iterator type is void, because files are not const-iterable.
Definition: io/sequence_file/output.hpp:114
char stream_char_type
Character type of the stream(s).
Definition: io/sequence_file/output.hpp:80
std::default_sentinel_t sentinel
The type returned by end().
Definition: io/sequence_file/output.hpp:116
typename detail::variant_from_tags< valid_formats, detail::sequence_file_output_format_exposer >::type format_type
Type of the format, a std::variant over the valid_formats.
Definition: io/sequence_file/output.hpp:457
friend iterator
Befriend iterator so it can access the buffers.
Definition: io/sequence_file/output.hpp:478
sequence_file_output(stream_t &&, file_format const &, selected_field_ids const &) -> sequence_file_output< selected_field_ids, type_list< file_format > >
Deduction guide for given stream, file format and field ids.
void push_back(tuple_t &&t)
Write a record in form of a std::tuple to the file.
Definition: io/sequence_file/output.hpp:305
sequence_file_output(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: io/sequence_file/output.hpp:185
void push_back(record_t &&r)
Write a seqan3::record to the file.
Definition: io/sequence_file/output.hpp:275
format_type format
The actual std::variant holding a pointer to the detected/selected format.
Definition: io/sequence_file/output.hpp:459
sequence_file_output(sequence_file_output &&)=default
Move construction is defaulted.
stream_ptr_t primary_stream
The primary stream is the user provided stream or the file stream if constructed from filename.
Definition: io/sequence_file/output.hpp:451
sequence_file_output & operator=(sequence_file_output &&)=default
Move assignment is defaulted.
sequence_file_output(sequence_file_output const &)=delete
Copy construction is explicitly deleted, because you can't have multiple access to the same file.
sequence_file_output(stream_t &, file_format const &) -> sequence_file_output< typename sequence_file_output<>::selected_field_ids, type_list< file_format > >
Deduction guide for given stream and file format.
valid_formats_ valid_formats
A seqan3::type_list with the possible formats.
Definition: io/sequence_file/output.hpp:78
selected_field_ids_ selected_field_ids
A seqan3::fields list with the fields selected for the record.
Definition: io/sequence_file/output.hpp:76
sequence_file_output(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: io/sequence_file/output.hpp:199
friend sequence_file_output operator|(rng_t &&range, sequence_file_output &&f)
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition: io/sequence_file/output.hpp:410
~sequence_file_output()=default
Destructor is defaulted.
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: io/sequence_file/output.hpp:424
sequence_file_output_options options
The options are public and its members can be set directly.
Definition: io/sequence_file/output.hpp:419
void emplace_back(arg_t &&arg, arg_types &&... args)
Write a record to the file by passing individual fields.
Definition: io/sequence_file/output.hpp:338
sequence_file_output & operator=(rng_t &&range)
Write a range of records (or tuples) to the file.
Definition: io/sequence_file/output.hpp:365
void value_type
The value type (void).
Definition: io/sequence_file/output.hpp:102
sentinel end() noexcept
Returns a sentinel for comparison with iterator.
Definition: io/sequence_file/output.hpp:251
void reference
The reference type (void).
Definition: io/sequence_file/output.hpp:104
std::vector< char > stream_buffer
A larger (compared to stl default) stream buffer to use when reading from a file.
Definition: io/sequence_file/output.hpp:433
static void stream_deleter_default(std::basic_ostream< stream_char_type > *ptr)
Stream deleter with default behaviour (ownership assumed).
Definition: io/sequence_file/output.hpp:445
friend sequence_file_output & operator|(rng_t &&range, sequence_file_output &f)
Write a range of records (or tuples) to the file.
Definition: io/sequence_file/output.hpp:401
stream_ptr_t secondary_stream
The secondary stream is a compression layer on the primary or just points to the primary (no compress...
Definition: io/sequence_file/output.hpp:453
void const_reference
The const reference type (void).
Definition: io/sequence_file/output.hpp:106
void write_record(seq_t &&seq, id_t &&id, qual_t &&qual)
Write record to format.
Definition: io/sequence_file/output.hpp:464
sequence_file_output()=delete
Default constructor is explicitly deleted, you need to give a stream or file name.
iterator begin() noexcept
Returns an iterator to current position in the file.
Definition: io/sequence_file/output.hpp:232
void size_type
The size type (void).
Definition: io/sequence_file/output.hpp:108
Auxiliary concept that checks whether a type is a specialisation of seqan3::fields.
Definition: detail/record.hpp:35
T data(T... args)
Provides auxiliary data structures and functions for seqan3::record and seqan3::fields.
Provides seqan3::views::elements.
Provides the seqan3::sequence_file_format_genbank class.
Provides the seqan3::format_sam.
T forward(T... args)
T get(T... args)
field
An enumerator for the fields used in file formats.
Definition: record.hpp:63
auto & get_or_ignore(record< field_types, field_ids > &r)
Access an element in a std::tuple or seqan3::record; return reference to std::ignore if not contained...
Definition: detail/record.hpp:113
void set_format(format_variant_type &format, std::filesystem::path const &file_name)
Sets the file format according to the file name extension.
Definition: io/detail/misc.hpp:68
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:43
@ id
The identifier, usually a string.
@ seq
The "sequence", usually a range of nucleotides or amino acids.
@ qual
The qualities, usually in Phred score notation.
Whether a type behaves like a tuple.
Provides various utility functions.
Provides exceptions used in the I/O module.
Stream concepts.
Provides various utility functions required only for output.
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
Provides the seqan3::detail::out_file_iterator class template.
Provides the seqan3::record template and the seqan3::field enum.
Provides seqan3::detail::record_like.
Provides seqan3::sequence_file_output_format and auxiliary classes.
Provides seqan3::sequence_file_output_options.
T size(T... args)
Base class to deduce the std::variant type from format tags.
Definition: io/detail/misc.hpp:31
A class template that holds a choice of seqan3::field.
Definition: record.hpp:128
static constexpr bool contains(field f)
Whether a field is contained in the parameter pack.
Definition: record.hpp:149
The class template that file records are based on; behaves like a std::tuple.
Definition: record.hpp:192
The options type defines various option members that influence the behaviour of all or some formats.
Definition: sequence_file/output_options.hpp:26
Type that contains multiple types.
Definition: type_list.hpp:29
T tie(T... args)
Provides traits for seqan3::type_list.
Provides seqan3::tuple_like.
Provides seqan3::views::convert.
T visit(T... args)
Provides seqan3::views::zip.