Closed eseiler closed 1 year ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
seqan3 | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Apr 25, 2023 10:30am |
Patch and project coverage have no change.
Comparison is base (
aa502ef
) 98.18% compared to head (11dc477
) 98.18%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
explicitly_convertible_to<typename t::sequence_legal_alphabet, typename t::sequence_alphabet>
is meant for allowing, e.g.:but not stuff like
However, this constraint is also checked for
using sequence_alphabet = char
. Our alphabets are not (explicitly/implicitly) convertible to char. The rationale of the alphabets being compatible doesn't apply forsequence_alphabet = char
, so we should just allow it.means: Only allow characters of
seqan3::dna4
, but store them aschar
.