29namespace seqan3::detail
42template <
typename format_type>
43struct sam_file_input_format_exposer :
public format_type
49 template <
typename... ts>
50 void read_alignment_record(ts &&... args)
76 std::ifstream & stream,
78 std::vector<dna5_vector> & ref_sequences,
80 std::streampos & position_buffer,
82 std::vector<phred42> &
qual,
85 std::optional<int32_t> &
ref_id,
87 std::vector<cigar> &
cigar,
90 std::tuple<std::optional<int32_t>, std::optional<int32_t>, int32_t> &
mate,
98 v.read_alignment_record(stream,
119 v.read_alignment_record(stream,
143#if SEQAN3_DOXYGEN_ONLY(1) 0
225namespace seqan3::detail
234constexpr bool is_type_list_of_sam_file_input_formats_v =
false;
241template <
typename... ts>
250concept type_list_of_sam_file_input_formats = is_type_list_of_sam_file_input_formats_v<t>;
Provides aliases for qualified.
Provides the seqan3::cigar alphabet.
The seqan3::cigar semialphabet pairs a counter with a seqan3::cigar::operation letter.
Definition alphabet/cigar/cigar.hpp:57
The SAM tag dictionary class that stores all optional SAM fields.
Definition sam_tag_dictionary.hpp:327
Provides seqan3::dna4, container aliases and string literals.
Provides seqan3::dna5, container aliases and string literals.
sam_flag
An enum flag that describes the properties of an aligned read (given as a SAM record).
Definition sam_flag.hpp:73
@ flag
The alignment flag (bit information), uint16_t value.
Definition record.hpp:84
@ ref_offset
Sequence (seqan3::field::ref_seq) relative start position (0-based), unsigned value.
Definition record.hpp:81
@ ref_seq
The (reference) "sequence" information, usually a range of nucleotides or amino acids.
Definition record.hpp:80
@ mapq
The mapping quality of the seqan3::field::seq alignment, usually a Phred-scaled score.
Definition record.hpp:86
@ bit_score
The bit score (statistical significance indicator), unsigned value.
Definition record.hpp:90
@ mate
The mate pair information given as a std::tuple of reference name, offset and template length.
Definition record.hpp:85
@ ref_id
The identifier of the (reference) sequence that seqan3::field::seq was aligned to.
Definition record.hpp:79
@ id
The identifier, usually a string.
Definition record.hpp:63
@ seq
The "sequence", usually a range of nucleotides or amino acids.
Definition record.hpp:62
@ qual
The qualities, usually in Phred score notation.
Definition record.hpp:64
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
Provides seqan3::phred42 quality scores.
Provides helper data structures for the seqan3::sam_file_output.
Provides the seqan3::sam_tag_dictionary class and auxiliaries.
Type that contains multiple types.
Definition type_list.hpp:26
Provides seqan3::type_list.