BinPro / CONCOCT

Clustering cONtigs with COverage and ComposiTion
Other
119 stars 48 forks source link

endless OpenBLAS Warning again #316

Open Xiaoyu2425 opened 1 year ago

Xiaoyu2425 commented 1 year ago

Hi, I got endless "OpenBLAS Warning : Detect OpenMP Loop and this application may hang. Please rebuild the library with USE_OPENMP=1 option" when I ran concoct with -t argument. I saw it in a previous threads where people suggested solutions such as "conda install blas=1.0=mkl" or "conda install -c conda-forge openblas=0.3.3" and then re-install "python setup.py install". However, I tried all those methods and it still didn't work.

Below are my "conda env export"

name: concoct_env2 channels:

Any suggestions would be appreciated!

kalen-rasmussen commented 1 year ago

Hey @Xiaoyu2425 I was able to work around this issue by doing the following on a linux server. Hopefully it will work for you too.

conda create -n concoct python=3.8 conda activate concoct conda config --env --add channels defaults conda config --env --add channels conda-forge conda config --env --add channels bioconda conda install concoct

At this point you can try entering concoct -h to see if the basic help menu will show up. In my experience I received the following error: "ImportError: libmkl_rt.so: cannot open shared object file: No such file or directory". Which I was able to fix by running:

conda install mkl