-
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] Update writable_alphabet concept #2337
Conversation
e1c8f8e
to
14996e6
Compare
Sorry, but I can not figure out the error myself. My test script is: #include <seqan3/alphabet/all.hpp>
int main()
{
seqan3::char_is_valid_for<seqan3::gapped<seqan3::dna4>>('a');
return 0;
}
I checked if seqan3::char_is_valid_forseqan3::dna4('a') and seqan3::char_is_valid_forseqan3::gap('-') work and they don't lead to an ice. I also tried using dna5, but there the error remained. |
This also makes the alphabet a bit less dependent on the meta library (seqan/product_backlog#124)
This also makes the alphabet a bit less dependent on the meta library (seqan/product_backlog#124)
14996e6
to
e1ff5b4
Compare
Let's see whether my fix fixes it :) |
Codecov Report
@@ Coverage Diff @@
## master #2337 +/- ##
==========================================
- Coverage 98.21% 98.21% -0.01%
==========================================
Files 263 264 +1
Lines 10772 10784 +12
==========================================
+ Hits 10580 10591 +11
- Misses 192 193 +1
Continue to review full report at Codecov.
|
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.
Looks good to me 🥳
Resolves seqan/product_backlog#278