-
Notifications
You must be signed in to change notification settings - Fork 82
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] Alphabet: deprecate phred_type constructor #2537
[MISC] Alphabet: deprecate phred_type constructor #2537
Conversation
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/seqan/seqan3/EE48YZ8W2UkFoTPFkxRzV4Nbdx3d |
bfd896e
to
30669a1
Compare
Codecov Report
@@ Coverage Diff @@
## master #2537 +/- ##
==========================================
- Coverage 98.23% 98.23% -0.01%
==========================================
Files 269 269
Lines 10541 10535 -6
==========================================
- Hits 10355 10349 -6
Misses 186 186
Continue to review full report at Codecov.
|
/*!\brief Allow construction from the Phred score value. | ||
* \details | ||
* \deprecated This will be removed in 3.1.0. Please use seqan3::phred42::assign_phred() or '!'_phred42. | ||
*/ | ||
constexpr phred42(phred_type const p) : base_t{p} {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
constexpr phred42(phred_type const p) : base_t{p} {} | |
SEQAN3_DEPRECATED_310 constexpr phred42(phred_type const p) : base_t{p} {} |
30669a1
to
131e644
Compare
CHANGELOG.md
Outdated
@@ -127,6 +127,11 @@ regression test suite and patches at https://github.com/seqan/seqan3/tree/master | |||
* Renamed `seqan3::phred68legacy` to `seqan3::phred68solexa` ([\#2522](https://github.com/seqan/seqan3/pull/2522)). | |||
* Renamed `seqan3::sam_dna16` to `seqan3::dna16sam` | |||
([\#2521](https://github.com/seqan/seqan3/pull/2521)). | |||
* Removed phred constructors instead ([\#2537](https://github.com/seqan/seqan3/pull/2537)): | |||
* Use instead of `seqan3::phred42{0}` constructor `seqan3::phred42::assign_phred(0)` or `'!'_phred42`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Use instead of `seqan3::phred42{0}` constructor `seqan3::phred42::assign_phred(0)` or `'!'_phred42`. | |
* Use instead of `seqan3::phred42(phred_type)` constructor `seqan3::phred42::assign_phred()` or `seqan3::operator""_phred42`. |
131e644
to
be93733
Compare
a1d535b
to
d7e077c
Compare
Signed-off-by: Lydia Buntrock <[email protected]>
Signed-off-by: Lydia Buntrock <[email protected]>
Signed-off-by: Lydia Buntrock <[email protected]>
Signed-off-by: Lydia Buntrock <[email protected]>
Signed-off-by: Lydia Buntrock <[email protected]>
Signed-off-by: Lydia Buntrock <[email protected]>
Used initialiser list in gcc7 instead of count,value ctor Co-authored-by: Enrico Seiler <[email protected]> Co-authored-by: Lydia Buntrock <[email protected]>
d7e077c
to
62180e1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Resolves seqan/product_backlog#316