Lucas van Dijk
Lucas van Dijk
Hmm, I'm also not sure this is the desired behaviour. coc-python now picks a conda environment as default interpreter, because it's a higher version than my system python. I would...
I can also confirm this, and agreeing with cunha that vim is especially slow when multiplexing (using wezterm connect to a GCP VM). The lag is still noticeable with `wezterm...
For reference, here's the C++ test program (using Catch2 test framework, but you get the idea): ```cpp #include #include #include #include #include TEST_CASE("Test unitig color data", "[unitig_color_data]") { CCDBG_Build_opt opt;...
I have the same issue, while zlib is both installed system-wide and in my conda environment...
Check the pull request here: https://github.com/enaeseth/python-fp-growth/pull/5
That's a disadvantage of De Bruijn graphs in general, you lose that kind of navigational data to reconstruct the original sequences that went in. Our group is planning to implement...
I've updated the cmake scripts with improved support for profiling. Setting `CMAKE_BUILD_TYPE` to `Profile` should enable the `-pg` flags when using GCC. Following guidelines from: https://stackoverflow.com/questions/24460486/cmake-build-type-is-not-being-used-in-cmakelists-txt/24470998#24470998
Thanks for your time! I've updated the CMakeLists.txt a bit more, which should address most of your points! However, I noticed that `target_link_options` is added in CMake 3.13, so the...