After bowtie2 installation using Conda, everything seems to go well, but when doing bowtie2 --help, you get this error:
error while loading shared libraries: libtbb.so.2: cannot open shared object file: No such file or directory
(ERR): Description of arguments failed!
Exiting now ...
This can be fixed by doing conda install tbb=2020.2.
Although that's slightly awkward because the point of Conda is that we don't have to worry about these kinds of things.
Maybe we can have this installed on the training environment by default to avoid this problem (as it's a core library and most likely installed in standard HPC environments).
After bowtie2 installation using Conda, everything seems to go well, but when doing
bowtie2 --help
, you get this error:This can be fixed by doing
conda install tbb=2020.2
.Although that's slightly awkward because the point of Conda is that we don't have to worry about these kinds of things. Maybe we can have this installed on the training environment by default to avoid this problem (as it's a core library and most likely installed in standard HPC environments).