Enrico Seiler

Results 112 comments of Enrico Seiler

I think we could do (either or both): * a cookbook entry where we show all the "advanced" usage (and then refer there from the alphabets) * add "advanced" usage...

Hey, seqan3.1.0 supports gcc-7 to gcc-11 (7.5, 8.4, 9.4, 10.3, and 11.2, to be precise). gcc-12 wasn't yet released when 3.1.0 was released. We plan to release 3.2.0 this month,...

Hey @Sawwave, thanks for reaching out, this is indeed not intuitive and not documented. It could look like this: ```cpp #include #include int main() { using sdsl_wt_index_type = sdsl::csa_wt; //...

If you add ```cpp #include ``` you can print the alignment: ```cpp auto & res = *results.begin(); seqan3::debug_stream

I found that changing the scoring scheme type to `int8_t` (default) results in the same score. ```cpp seqan3::nucleotide_scoring_scheme ``` Mind that with `int8_t` the scores underflow. Haven't yet tried changing...

Something goes wrong with the traceback. The score is actually correct. ``` 0 . : GGCAAGAA--- | | | --C--G-AAGC ``` The score for this alignment is -239. Is not...

### Core-Meeting 2020-08-10: PMR? cppreference: https://en.cppreference.com/w/cpp/memory/polymorphic_allocator cpp weekly: https://www.youtube.com/watch?v=q6A7cKFXjY0 Agent-Client pattern?

Some ideas, without looking much at the code: * [number of texts] We store the text begin positions (`text_begin`), we also have select and rank support for this vector. The...

@MitraDarja Can you check which points are still relevant? Quick scan would suggest `concat_capacity() to concat_size() in Container` but the rest seems rather resolved?