Entering edit mode
Hello,
I need to install an old version of DESeq2 and apeglm from 2019 in order to replicate some old results. I have tried to create a docker image using script below but DESeq2 does not install.
FROM bioconductor/bioconductor_docker:RELEASE_3_10
ENV DEBIAN_FRONTEND=noninteractive
# Install system dependencies for building Bioconductor packages
RUN apt-get update && apt-get install -y \
libxml2-dev \
libssl-dev \
libcurl4-openssl-dev \
libgit2-dev \
zlib1g-dev \
libncurses-dev \
libbz2-dev \
liblzma-dev \
libpcre2-dev \
build-essential \
&& rm -rf /var/lib/apt/lists/*
RUN R -e "install.packages(c( \
'matrixStats', 'BiocParallel', 'DBI', 'RSQLite', 'XML', 'xtable', 'RCurl', \
'RColorBrewer', 'ggplot2', 'Hmisc', 'Rcpp', 'RcppArmadillo', 'RcppEigen', \
'RcppNumerical', 'locfit', 'emdbook' \
), repos = 'https://cran.microsoft.com/snapshot/2019-11-01')"
RUN R -e "BiocManager::install(c('DESeq2', 'apeglm'))"
Any recommendations for this?
Is there an error that occurs that can be shared?
To add to what Lori asks, this builds for me, using Dockerhub on Windows: