add nextflow d30e48d

This commit is contained in:
2026-04-29 23:01:54 +02:00
parent d0b12d668d
commit 97cc9058d3
2840 changed files with 730250 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
FROM pditommaso/dkrbase:1.2
MAINTAINER Paolo Di Tommaso <paolo.ditommaso@gmail.com>
RUN apt-get update -y && apt-get install -q -y gnuplot python && apt-get clean
#
# Required PERL modules
#
RUN cpanm Math::CDF Math::Round && \
rm -rf /root/.cpanm/work/
#
# BLAST
#
RUN wget -q ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.29/ncbi-blast-2.2.29+-x64-linux.tar.gz && \
tar xf ncbi-blast-2.2.29+-x64-linux.tar.gz && \
mv ncbi-blast-2.2.29+ /opt/ && \
rm -rf ncbi-blast-2.2.29+-x64-linux.tar.gz && \
ln -s /opt/ncbi-blast-2.2.29+/ /opt/blast
#
# install T-Coffee
#
RUN wget -q http://tcoffee.org/Packages/Stable/Version_11.00.8cbe486/linux/T-COFFEE_installer_Version_11.00.8cbe486_linux_x64.tar.gz && \
tar xf T-COFFEE_installer_Version_11.00.8cbe486_linux_x64.tar.gz -C /opt && \
mv /opt/T-COFFEE_installer_Version_11.00.8cbe486_linux_x64 /opt/tcoffee && \
rm -rf /opt/tcoffee/plugins/linux/* && \
rm T-COFFEE_installer_Version_11.00.8cbe486_linux_x64.tar.gz
#
# Add AMPA script to bin folder
#
ADD bin/AMPA.pl /usr/local/bin/
#
# Configure the env
#
ENV PATH="$PATH:/opt/ncbi-blast-2.2.29+/bin:/opt/tcoffee/bin"