Open dunatotatos opened 2 years ago
We can work with conda to resolve this. In meanwhile, can you try downloading and installing from the tarball for the latest distribution v0.7.3.
I confirm that installing from the tarball works in a Dockerfile. If it can be useful, here is the one I used:
FROM ubuntu:22.04
RUN apt-get update -y
RUN apt-get install -y build-essential libbz2-dev tar wget zlib1g-dev
ENV VERSION=0.7.3
RUN wget https://github.com/fbreitwieser/krakenuniq/archive/refs/tags/v$VERSION.tar.gz && \
tar xzf v$VERSION.tar.gz && \
cd krakenuniq-$VERSION && \
./install_krakenuniq.sh /opt/krakenuniq &&\
cd .. && rm -rf krakenuniq-$VERSION
ENV PATH=/opt/krakenuniq:$PATH```
Hi. This issue persists. I can not install older versions of krakenuniq (like v0.6) using conda. I can use these versions by compiling from source but my aim is to integrate this tool in a reproducible snakemake workflow. Will there be a fix for that in the future?
My command:
conda install -c bioconda krakenuniq=0.6
Thank you for your help.
Can you try downloading and installing the latest release from github. It is straightforward.
On Tue, Mar 21, 2023 at 5:33 AM Emrah Kırdök @.***> wrote:
Hi. This issue persists. I can not install older versions of krakenuniq (like v0.6) using conda. I can use these versions by compiling from source but my aim is to integrate this tool in a reproducible snakemake workflow. Will there be a fix for that in the future?
My command:
conda install -c bioconda krakenuniq=0.6
Thank you for your help.
— Reply to this email directly, view it on GitHub https://github.com/fbreitwieser/krakenuniq/issues/102#issuecomment-1477519603, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGPXGHNRIXVW5BODXGBOJPLW5FYVVANCNFSM5ZNIIB5A . You are receiving this because you commented.Message ID: @.***>
-- Dr. Alexey V. Zimin Associate Research Scientist Department of Biomedical Engineering, Johns Hopkins University, Baltimore, MD, USA (301)-437-6260 website http://ccb.jhu.edu/people/alekseyz/ blog http://masurca.blogspot.com
Hi,
I'm trying to install the version 0.7 of krakenuniq with conda, but get a "UnsatisfiableError" with strange conflicts. I wrote a simple Dockerfile showing the exact issue:
Here is the output of the latest step (conda install...) of a docker build:
I tried using ubuntu 20.04 and Python3.7 hoping for some kind of magic dependency miracle, but it didn't help. Am I doing something wrong?