SeqAn3  3.0.0
The Modern C++ library for sequence analysis.
header.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2019, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2019, 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 <deque>
16 #include <unordered_map>
17 #include <vector>
18 
21 #include <seqan3/std/ranges>
22 
23 namespace seqan3
24 {
25 
28 template <std::ranges::ForwardRange ref_ids_type = std::deque<std::string>>
30 {
31 public:
35  alignment_file_header() = default;
46  ~alignment_file_header() = default;
47 
51  alignment_file_header(ref_ids_type & ref_ids) :
52  ref_ids_ptr{&ref_ids, ref_ids_deleter_noop}
53  {}
54 
58  alignment_file_header(ref_ids_type && ref_ids) :
59  ref_ids_ptr{new ref_ids_type{std::move(ref_ids)}, ref_ids_deleter_default}
60  {}
62 
65  {
72  };
73 
78 
80 
82 
83 private:
87  static void ref_ids_deleter_noop(ref_ids_type *) {}
89  static void ref_ids_deleter_default(ref_ids_type * ptr) { delete ptr; }
93  ref_ids_ptr_t ref_ids_ptr{new ref_ids_type{}, ref_ids_deleter_default};
94 
95 public:
114  ref_ids_type & ref_ids()
115  {
116  return *ref_ids_ptr;
117  }
118 
157 
160 
201 };
202 
203 } // namespace seqan3
ref_ids_type & ref_ids()
The range of reference ids.
Definition: header.hpp:114
std::string subsorting
The sub-sorting of the file. SAM: [unknown, unsorted, queryname, coordinate](:[A-Za-z0-9_-]+)+.
Definition: header.hpp:76
std::vector< program_info_t > program_infos
The list of program information.
Definition: header.hpp:79
std::string sorting
The sorting of the file. SAM: [unknown, unsorted, queryname, coordinate].
Definition: header.hpp:75
Provides various transformation trait base templates and shortcuts.
decltype(view::all(declval< R >())) all_view
The type that would be returned by the std::view::all adaptor.
Definition: ranges:397
~alignment_file_header()=default
Destructor is defaulted.
The main SeqAn3 namespace.
std::string command_line_call
The command line call that produces the file.
Definition: header.hpp:68
Auxiliary functions for the alignment IO.
std::string name
The official name.
Definition: header.hpp:67
alignment_file_header()=default
Default constructor is defaulted.
Stores the header information of alignment files.
Definition: header.hpp:29
std::string id
A unique (file scope) id.
Definition: header.hpp:66
alignment_file_header & operator=(alignment_file_header const &)=default
Copy assignment is defaulted.
Adaptations of concepts from the Ranges TS.
std::string previous
The id of the previous program if program calls were chained.
Definition: header.hpp:69
alignment_file_header(ref_ids_type &&ref_ids)
Construct from a rvalue range of reference ids which is moved into the ref_ids_ptr (owning)...
Definition: header.hpp:58
std::string grouping
The grouping of the file. SAM: [none, query, reference].
Definition: header.hpp:77
std::vector< std::pair< std::string, std::string > > read_groups
The Read Group Dictionary (used by the SAM/BAM format).
Definition: header.hpp:200
std::vector< std::string > comments
The list of comments.
Definition: header.hpp:81
std::string version
The program/tool version.
Definition: header.hpp:71
std::string description
A description of the program and/or program call.
Definition: header.hpp:70
std::unordered_map< key_type, int32_t, std::hash< key_type >, detail::view_equality_fn > ref_dict
The mapping of reference id to position in the ref_ids() range and the ref_id_info range...
Definition: header.hpp:159
alignment_file_header(ref_ids_type &ref_ids)
Construct from a range of reference ids which redirects the ref_ids_ptr member (non-owning).
Definition: header.hpp:51
std::vector< std::tuple< int32_t, std::string > > ref_id_info
The reference information. (used by the SAM/BAM format)
Definition: header.hpp:156
Stores information of the program/tool that was used to create the file.
Definition: header.hpp:64
std::string format_version
The file format version. Note: this is overwritten by our formats on output.
Definition: header.hpp:74