-
Notifications
You must be signed in to change notification settings - Fork 9
/
Singularity
34 lines (24 loc) · 928 Bytes
/
Singularity
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Bootstrap: docker
From: vibpsb/i-adhore
%labels
AUTHOR cecilia.sensalari@psb.vib-ugent.be
%environment
export LC_ALL=C.UTF-8
export LANG=C.UTF-8
export DEBIAN_FRONTEND=noninteractive
%files
requirements.txt install/requirements.txt
setup.py install/setup.py
ksrates install/ksrates
wgd_ksrates install/wgd_ksrates
README.md install/README.md
ksrates_cli.py install/ksrates_cli.py
%post
# Install PAML from source
apt-get install -y wget && wget http://abacus.gene.ucl.ac.uk/software/paml4.9j.tgz && \
tar -xzf paml4.9j.tgz && cd paml4.9j/src && make -f Makefile && mv codeml /bin && cd /
# Install Python3, wgd dependencies...
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq install python3-pip python3-tk git curl \
default-jdk build-essential mcl ncbi-blast+ muscle mafft prank fasttree phyml
# Install ksrates and requirements from requirements.txt
python3 -m pip install /install