Closed omansn closed 3 years ago
Hi,
I am glad you are interested in my collapsing method. It took quite a lot of fiddling to get it to work properly with INDELs etc.
Could you share the version of gcc / g++ that you are using the compile the code? You can use g++ --version
to find out.
The problem appears to be with a Lambda expression, which is likely due an outdated compiler version.
If you have conda available you could create a new environment with newer versions of gcc/g++ with that. After activating the environment delete the build folder and start the compilating again. I've used this method on a computational cluster that had very outdated compilers.
I just tested compiling again on a fresh ubuntu install using g++ (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
without error. I've compiled it on OSX using clang as well.
Ah! easy fix. I tried again with GCC 9.2.0 and it worked fine. Thank you for the fast response!
Oh great no problem. Let me know if you have any questions with any of the data formats or bam tags. The documentation needs some work I just haven't found time to update it all.
Hello, first off— this seems like a great tool. I've been working on collapsing UMI reads in 10x data and this is a much better implementation than I could have done. :)
I'm trying to install following your instructions in the README. I'm running into some errors during the make step.
It seems like this issue beings while compiling fasta.hpp. I don't know c++ but it looks to me like rs is being evaluated as both a function and a local variable in one line (line 125). I might be totally wrong about this, but I've included the error messages below.
Thanks!