Skip to content

Commit

Permalink
[skip ci] fix identation
Browse files Browse the repository at this point in the history
  • Loading branch information
marehr committed Mar 1, 2021
1 parent 4e4cc9f commit 3f77cae
Showing 1 changed file with 7 additions and 17 deletions.
24 changes: 7 additions & 17 deletions include/seqan3/io/alignment_file/output.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -810,9 +810,7 @@ class sam_file_output
*/
template <detail::fields_specialisation selected_field_ids>
sam_file_output(std::filesystem::path, selected_field_ids const &)
-> sam_file_output<selected_field_ids,
typename sam_file_output<>::valid_formats,
ref_info_not_given>;
-> sam_file_output<selected_field_ids, typename sam_file_output<>::valid_formats, ref_info_not_given>;

/*!\brief Deduces selected_field_ids, and the valid format from input and
* sets sam_file_output::ref_ids_type to seqan3::detail::ref_info_not_given.
Expand All @@ -821,9 +819,7 @@ template <output_stream stream_type,
sam_file_output_format file_format,
detail::fields_specialisation selected_field_ids>
sam_file_output(stream_type &&, file_format const &, selected_field_ids const &)
-> sam_file_output<selected_field_ids,
type_list<file_format>,
ref_info_not_given>;
-> sam_file_output<selected_field_ids, type_list<file_format>, ref_info_not_given>;

/*!\brief Deduces selected_field_ids, and the valid format from input and
* sets sam_file_output::ref_ids_type to seqan3::detail::ref_info_not_given.
Expand All @@ -832,29 +828,23 @@ template <output_stream stream_type,
sam_file_output_format file_format,
detail::fields_specialisation selected_field_ids>
sam_file_output(stream_type &, file_format const &, selected_field_ids const &)
-> sam_file_output<selected_field_ids,
type_list<file_format>,
ref_info_not_given>;
-> sam_file_output<selected_field_ids, type_list<file_format>, ref_info_not_given>;

/*!\brief Deduces the valid format from input and sets sam_file_output::ref_ids_type to
* seqan3::detail::ref_info_not_given. selected_field_ids is set to the default.
*/
template <output_stream stream_type,
sam_file_output_format file_format>
sam_file_output(stream_type &&, file_format const &)
-> sam_file_output<typename sam_file_output<>::selected_field_ids,
type_list<file_format>,
ref_info_not_given>;
-> sam_file_output<typename sam_file_output<>::selected_field_ids, type_list<file_format>, ref_info_not_given>;

/*!\brief Deduces the valid format from input and sets sam_file_output::ref_ids_type to
* seqan3::detail::ref_info_not_given. selected_field_ids is set to the default.
*/
template <output_stream stream_type,
sam_file_output_format file_format>
sam_file_output(stream_type &, file_format const &)
-> sam_file_output<typename sam_file_output<>::selected_field_ids,
type_list<file_format>,
ref_info_not_given>;
-> sam_file_output<typename sam_file_output<>::selected_field_ids, type_list<file_format>, ref_info_not_given>;

//!\brief Deduces selected_field_ids and ref_ids_type from input. valid_formats is set to the default.
template <detail::fields_specialisation selected_field_ids,
Expand Down Expand Up @@ -898,8 +888,8 @@ template <output_stream stream_type,
sam_file_output_format file_format>
sam_file_output(stream_type &&, ref_ids_type &&, ref_lengths_type &&, file_format const &)
-> sam_file_output<typename sam_file_output<>::selected_field_ids,
type_list<file_format>,
std::remove_reference_t<ref_ids_type>>;
type_list<file_format>,
std::remove_reference_t<ref_ids_type>>;

//!\brief Deduces the valid format, and the ref_ids_type from input. selected_field_ids set to the default.
template <output_stream stream_type,
Expand Down

0 comments on commit 3f77cae

Please sign in to comment.