Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MISC] rename seqan3::{alignment => sam}_file_output* #2414

Merged
merged 1 commit into from
Mar 2, 2021

Conversation

marehr
Copy link
Member

@marehr marehr commented Feb 24, 2021

Part of many small rename PRs, tackles seqan/product_backlog#290.

@marehr marehr requested review from a team and Irallia and removed request for a team February 24, 2021 15:47
@vercel
Copy link

vercel bot commented Feb 24, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/seqan/seqan3/DaFzC63zVAzRdS99gJEVdTLxBEdn
✅ Preview: https://seqan3-git-fork-marehr-samfile03-seqan.vercel.app

@codecov
Copy link

codecov bot commented Feb 24, 2021

Codecov Report

Merging #2414 (08f7238) into master (b03b41c) will not change coverage.
The diff coverage is 100.00%.

Impacted file tree graph

@@           Coverage Diff           @@
##           master    #2414   +/-   ##
=======================================
  Coverage   98.21%   98.21%           
=======================================
  Files         267      267           
  Lines       10863    10863           
=======================================
  Hits        10669    10669           
  Misses        194      194           
Impacted Files Coverage Δ
include/seqan3/io/alignment_file/format_bam.hpp 95.59% <ø> (ø)
...clude/seqan3/io/alignment_file/format_sam_base.hpp 98.74% <ø> (ø)
include/seqan3/io/alignment_file/input.hpp 100.00% <ø> (ø)
include/seqan3/io/alignment_file/misc.hpp 100.00% <ø> (ø)
include/seqan3/io/alignment_file/format_sam.hpp 96.33% <100.00%> (ø)
include/seqan3/io/alignment_file/output.hpp 100.00% <100.00%> (ø)
...seqan3/io/alignment_file/output_format_concept.hpp 100.00% <100.00%> (ø)
...nclude/seqan3/io/alignment_file/output_options.hpp 100.00% <100.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update b03b41c...9939576. Read the comment docs.

Copy link
Contributor

@Irallia Irallia left a comment

Choose a reason for hiding this comment

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

💅

Comment on lines 812 to 815
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>;
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
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(std::filesystem::path, selected_field_ids const &)
-> sam_file_output<selected_field_ids, typename sam_file_output<>::valid_formats, ref_info_not_given>;

Comment on lines 823 to 826
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>;
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
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(stream_type &&, file_format const &, selected_field_ids const &)
-> sam_file_output<selected_field_ids, type_list<file_format>, ref_info_not_given>;

Comment on lines 834 to 837
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>;
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
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(stream_type &, file_format const &, selected_field_ids const &)
-> sam_file_output<selected_field_ids, type_list<file_format>, ref_info_not_given>;

Comment on lines 843 to 847
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>;
Copy link
Contributor

Choose a reason for hiding this comment

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

same here

Comment on lines 854 to 857
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>;
Copy link
Contributor

Choose a reason for hiding this comment

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

same here

Comment on lines 899 to 902
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>>;
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
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>>;
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>>;

@marehr
Copy link
Member Author

marehr commented Mar 1, 2021

@Irallia ty good catch :)

Copy link
Contributor

@Irallia Irallia left a comment

Choose a reason for hiding this comment

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

perfect, thank you

@Irallia Irallia requested review from a team and eseiler and removed request for a team March 1, 2021 18:33
include/seqan3/io/alignment_file/input.hpp Outdated Show resolved Hide resolved
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants