Created
March 23, 2021 04:26
-
-
Save pansapiens/8ffa95bcfb2fae5ed44fcc2a64833efd to your computer and use it in GitHub Desktop.
rnasik in docker (via conda/mamba)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM continuumio/miniconda3 | |
# | |
# docker build -t pansapiens/rnasik:latest -t pansapiens/rnasik:1.5.4 . | |
# docker run --rm -it -v $(pwd):/data pansapiens/rnasik --help | |
# | |
RUN conda install --yes -c conda-forge mamba | |
RUN mamba install --yes -c bioconda -c conda-forge -c serine -c serine/label/dev -c anaconda -c defaults -c r -c conda-forge/label/broken \ | |
python=3.6 rnasik=1.5.4 qualimap=2.2.2b=0 "pandas<1" && \ | |
mamba clean -af --yes | |
ENTRYPOINT ["RNAsik"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/mamba-org/micromamba-docker is a good alternative base image.