klassify 0.1.6

Classify chimeric reads based on unique kmer contents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# ---------- Dockerfile ----------
FROM condaforge/miniforge3:latest

# Add Bioconda channel (conda-forge is already the highest-priority channel)
RUN conda config --add channels bioconda && \
    conda install -y pbccs && \
    # remove package caches & unused index data (saves ~250 MB)
    conda clean -afy

# If you prefer micromamba over conda, comment out the three lines above
# and substitute: `mamba install -y pbccs=${PBCCS_VER}`

# Default command when the container is run
ENTRYPOINT ["ccs"]