-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
qc3C conda failure on CentOS8 #43
Comments
Please try with the latest release and let me know if the problem persists. |
Hello,
|
Hi @mscharmann thanks for reporting this problem. I'll see what can be done about it. That's a pretty old version of RH, which I think tops out at GLIBC 2.3.x. |
I haven't tested this as I do not have a RH4.8 environment set up, but there's a possibility that this problem stems from the removal of Python 3.6 support from qc3C. The removal was in response to an unresolvable (by me) segmentation fault within pytest when run in a conda py36 environment. I have not been able to track down what change within the dependency tree has introduced this problem. qc3C, however, seems fine. I just cannot run the tests presently, which interrupts the automated build process. A possible work around which might work for you. # 1) create a Python 3.6 environment, without qc3C but everything else you'll need.
conda create -y -n qc3c_py36 -c conda-forge -c bioconda -c cerebis samtools jellyfish "python<3.7"
# 2) activate this environment
conda activate qc3c_py36
# 3) install qc3C from github using pip
pip install git+https://github.com/cerebis/qc3C |
The conda usage instructions in README.md lead to two problems on CentOS8. First is a missing libbz2, which can be rectified by running
conda install -c conda-forge bzip2
or possibly adding bzip2 to the initial environment creation. The second issue is due to a problem with the kerberos lib used by CentOS missing some functionality that is expected by the openssl from conda. The error manifests as:It appears this is a known issue with conda on CentOS8 and an updated version of the kerberos lib can or will resolve it.
The text was updated successfully, but these errors were encountered: