We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14a2929 commit 355a16aCopy full SHA for 355a16a
1 file changed
docker/Dockerfile
@@ -140,6 +140,11 @@ RUN wget https://github.com/alexdobin/STAR/releases/download/2.7.11b/STAR_2.7.11
140
rm -rf STAR_2.7.11b* && \
141
STAR --version
142
143
+# Install fastp with required dependencies
144
+RUN wget http://opengene.org/fastp/fastp.1.3.2 && \
145
+ mv fastp.1.3.2 /usr/local/bin/fastp && \
146
+ fastp --version
147
+
148
# install R packages
149
RUN Rscript -e 'install.packages("BiocManager", repos = "https://cloud.r-project.org")' \
150
&& Rscript -e 'BiocManager::install("limma")' \
0 commit comments