You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This installs the software, but upon using vSNP_step1.py, I get:
### SRR Making indexes...
samtools: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: No such file or directory
UnsatisfiableError: The following specifications were found to be incompatible with each other:
Output in format: Requested package -> Available versions
Package libgcc-ng conflicts for:
python=3.9 -> zlib[version='>=1.2.11,<1.3.0a0'] -> libgcc-ng[version='>=10.3.0|>=7.2.0']
python=3.9 -> libgcc-ng[version='>=7.3.0|>=7.5.0']
Package ncurses conflicts for:
python=3.9 -> ncurses[version='>=6.2,<7.0a0|>=6.3,<7.0a0']
python=3.9 -> readline[version='>=8.0,<9.0a0'] -> ncurses[version='>=6.1,<7.0a0']
Package _libgcc_mutex conflicts for:
samtools=1.9 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge|main']
python=3.9 -> libgcc-ng[version='>=7.5.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge|main']The following specifications were found to be incompatible with your system:
- feature:/linux-64::__glibc==2.17=0
- feature:|@/linux-64::__glibc==2.17=0
- samtools=1.9 -> libgcc-ng[version='>=7.3.0'] -> __glibc[version='>=2.17']
Your installed version is: 2.17
I tried making a new environment and installing vsnp with conda install -c defaults -c bioconda -c conda-forge vsnp python=3.7 and after a very long time it did give me a y/n proceed to install prompt, but samtools was at 1.7 and I still got the same libcrypto.so.1.0.0 error.
I tried downloading the most recent .tar.bz2 from here: https://anaconda.org/bioconda/vsnp/files, editing the meta.yaml changing python >=3.7 to python=3.7, conda-build ., but got:
I tried the same thing but removing the version requirement from Python and setting samtools to require version 1.9, but got a similar conda_build.exceptions.DependencyNeedsBuildingError error.
Please advise the best way to resolve this and let me know if you need any other information. Thank you for your help.
The text was updated successfully, but these errors were encountered:
This is an issue with Anaconda that I've fought with too many times. :) Your error isn't the exact same but I think it is similar. I would give this a try and see if it solves the issue.
What I think is happening here is a conflict of libraries. It often seems between samtools and pysam requirements. Running instructions from the link above, and messing with different versions of samtools and pysam have solved the issue in the past. I wish I had a one-size-fits-all set of instructions to fix this, but it seems to be different for each environment.
I do currently have a new version of vsnp available... vsnp3.
vsnp3 does not use pysam(for this reason), which seems to have fixed the problem. I've not installed it on that many systems, so I don't want to be too confident, but installations have been working consistently. The only issue I've found is it uses python 3.9 by default. If an older version (say 2020) of Anaconda is being used I've had to install with a lower version of python... 3.7/3.8.
vsnp3 is very similar. The UI options and output file organization is slightly different so I went with a new repo/name change.
Thank you very much for your quick reply. Unfortunately while I was able to execute all of the macOS special instructions in the original vsnp Conda environment, I still got the same libcrypto.so.1.0.0 error.
I tried giving vsnp3 a shot, but it seems that CentOS 7's glibc (2.17) is too old for the version of numpy that vsnp3 requires (>=1.22.2). I'll click "Close with comment" but thank you for your help!
Hello,
I am having trouble installing/using this software.
OS: CentOS Linux release 7.9.2009 (Core)
Conda version: 4.11.0
Steps taken to install:
This installs the software, but upon using vSNP_step1.py, I get:
conda list
output:Attempts to resolve this:
conda install -c bioconda samtools=1.9 --force-reinstall
, but I'm gettingI tried making a new environment and installing vsnp with
conda install -c defaults -c bioconda -c conda-forge vsnp python=3.7
and after a very long time it did give me a y/n proceed to install prompt, but samtools was at 1.7 and I still got the same libcrypto.so.1.0.0 error.I tried downloading the most recent .tar.bz2 from here: https://anaconda.org/bioconda/vsnp/files, editing the meta.yaml changing python >=3.7 to python=3.7,
conda-build .
, but got:Please advise the best way to resolve this and let me know if you need any other information. Thank you for your help.
The text was updated successfully, but these errors were encountered: