Enrico Seiler
Enrico Seiler
Hey! In your AA code, you are using `std::vector records{};`, but since you only want to store the sequence there (`records.push_back(rec.sequence())`), it should be `std::vector records{};`.
The values seem correct to me? ``` 1011 ACGTC 1011 ------------------------------ 16 4 1 16 4 1 A G T C T C 0 2 3 1 3 1 ------------------------------...
Ok, I get it now that the snippet is correct :) The problem is that this inherits from the `dynamic_bitset` (which is just a `constexpr`-capable version of `std::bitset`, and implements...
I reopen this because that shapes are "the wrong way around" might be a problem :)
> Maybe just adding some documentation would be enough? #2981 Yes, at the very least 👍 . We can talk in the meeting about it. Either we find that this...
RC 1 available: https://github.com/seqan/seqan3/releases/tag/3.2.0-rc.1
> Are architectures besides x86-64 supported yet? Should I test on arm64? These should work: * `x86-64` (tested via CI) * `ppc64le` (tested via [Nightlies](https://cdash.seqan.de/index.php?project=SeqAn3)) * `arm64` (tested via [Travis](https://app.travis-ci.com/github/seqan/seqan3/builds/251990369))...
3.2.0 has been released https://github.com/seqan/seqan3/releases/tag/3.2.0
We have to do either of both: ```cpp namespace seqan3::custom { // Specialise the seqan3::custom::argument_parsing data structure to enable parsing of std::errc. template struct sharg::custom::argument_parsing { // ... }; }...
I played around a bit: https://quick-bench.com/q/RtiW9XqNDG_O9BzGo8gUzKAZQNo ```cpp constexpr uint8_t rank(char c) noexcept { uint8_t rank = static_cast(c); rank |= (rank & 0b0001'0000) >> 1; rank += 1u; rank >>= 2;...