-
Notifications
You must be signed in to change notification settings - Fork 44
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
CURL_OPENSSL conflict with samtools #138
Comments
How are you installing MethylDackel and samtools? |
I first attempted to install using conda and a Dockerfile, but ran into python package conflict errors. Also compiled samtools from source. Right now in the painful hacky situation of having to swap out libcurl3 and libcurl4-openssl-dev using sudo apt-get install to run samtools or MethylDackel. This is on a Ubuntu 18.04 system. Any help would be great, thanks. |
Since you're familiar with conda already could you instead make a new conda environment with both samtools and MethylDackel? I've recently rebuilt both in Bioconda and can guarantee compatibility. Alternatively, you can use the premade docker containers for samtools and MethylDackel that we (Bioconda) provide to Biocontainers for hosting on quay.io (methyldackel here, samtools here). I'm guessing that the root of your current headache was building MethylDackel in a container that had a different curl version inside compared to your system (against which samtools was compiled). Compiling tools yourself is a real pain, so I'd suggest sticking to just using conda or containers. |
Hi,
Thank you very much for writing MethylDackel. I'm running into a conflict of the libcurl version number on my setup.
When running MethylDackel, I get
but if I install libcurl4 using
apt-get install libcurl4-openssl-dev
, I now have a conflict with samtools needingCURL_OPENSSL_3
.I realize this is not strictly a MethylDackel issue but was wondering if other users working with samtools and MethylDackel have run into this conflict and how they resolved it.
Thanks!
The text was updated successfully, but these errors were encountered: