Skip to content

Commit

Permalink
Merge pull request #2389 from marehr/io_explicit_record_type_nr3
Browse files Browse the repository at this point in the history
[FEATURE] seqan3::sam_record
  • Loading branch information
eseiler committed Feb 28, 2021
2 parents 6f39b37 + d59e290 commit be6f2c1
Show file tree
Hide file tree
Showing 8 changed files with 859 additions and 8 deletions.
6 changes: 3 additions & 3 deletions include/seqan3/io/alignment_file/input.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
#include <seqan3/io/alignment_file/format_bam.hpp>
#include <seqan3/io/alignment_file/format_sam.hpp>
#include <seqan3/io/alignment_file/misc.hpp>
#include <seqan3/io/alignment_file/record.hpp>
#include <seqan3/io/detail/in_file_iterator.hpp>
#include <seqan3/io/detail/misc_input.hpp>
#include <seqan3/io/detail/record.hpp>
#include <seqan3/io/exception.hpp>
#include <seqan3/io/record.hpp>
#include <seqan3/io/stream/concept.hpp>
#include <seqan3/range/decorator/gap_decorator.hpp>
#include <seqan3/range/views/repeat_n.hpp>
Expand Down Expand Up @@ -518,8 +518,8 @@ class alignment_file_input
"of alignment_file_input::field_ids for the accepted values.");

//!\brief The type of the record, a specialisation of seqan3::record; acts as a tuple of the selected field types.
using record_type = record<detail::select_types_with_ids_t<field_types, field_ids, selected_field_ids>,
selected_field_ids>;
using record_type = sam_record<detail::select_types_with_ids_t<field_types, field_ids, selected_field_ids>,
selected_field_ids>;
//!\}

/*!\name Range associated types
Expand Down
Loading

1 comment on commit be6f2c1

@vercel
Copy link

@vercel vercel bot commented on be6f2c1 Feb 28, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.