Skip to content
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

Vamb #540

Closed
wants to merge 3 commits into from
Closed

Vamb #540

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions vamb/4.1.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
FROM --platform=linux/amd64 mambaorg/micromamba:1.5.1

MAINTAINER biocontainers <biodocker@gmail.com>

LABEL software="vamb" \
base_image=" mambaorg/micromamba:1.5.1" \
container="vamb" \
about.summary="VAMB: Variational autoencoders for metagenomic binning" \
about.home="https://github.com/RasmussenLab/vamb" \
software.version="4.1.3" \
version="1" \
extra.identifiers.biotools="vamb" \
about.copyright="Rasmussen Group" \
about.license="MIT" \
about.license_file="https://github.com/RasmussenLab/vamb/blob/master/LICENSE" \
about.tags=""


ARG MAMBA_DOCKERFILE_ACTIVATE=1
ENV PATH=/opt/conda/bin:$PATH

COPY --chown=$MAMBA_USER:$MAMBA_USER env_vamp.yaml /tmp/env_vamp.yaml

RUN micromamba install -y -n base -f /tmp/env_vamp.yaml && \
micromamba clean --all --yes

RUN pip install vamb==4.1.3
10 changes: 10 additions & 0 deletions vamb/4.1.3/env_vamp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: base
channels:
- conda-forge
- bioconda
dependencies:
- python=3.10
- conda-forge::procps-ng=4.0.0
- git
- rust
- gcc