Newer
Older
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
BootStrap: docker
From: ubuntu:xenial
%help
This singularity install hiddenDomains v3.1
%post
# ~~~~~~ General setup and folder creation ~~~~~~ #
apt-get update && apt-get install -y wget bzip2
export LC_ALL=en_US.UTF-8
export LC_COLLATE=C
export LC_CTYPE=C
export LC_MEASUREMENT=C
export LC_MESSAGES=C
export LC_MONETARY=C
export LC_PAPER=C
export LC_TIME=C
export LANG=C.UTF-8
# ~~~~~ MINICONDA 3.4.0.5 ~~~~~ #
wget https://repo.anaconda.com/miniconda/Miniconda3-4.6.14-Linux-x86_64.sh && \
bash Miniconda3-4.6.14-Linux-x86_64.sh -b -p /conda && \
rm -f Miniconda3-4.6.14-Linux-x86_64.sh
export PATH="/conda/bin:${PATH}"
# ~~~~~ perl 5.32.1 ~~~~~~~#
conda install -c conda-forge perl=5.32.1
# ~~~~ R v 4.1.2 ~~~~~~ #
conda install -c conda-forge r-base=4.1.2
# ~~~ r-depmixs4 v1.5_0 ~~~~#
conda install -c conda-forge r-depmixs4=1.5_0
#~~~~ r-hiddenmarkov v1.8_13 ~~~#
conda install -c conda-forge r-hiddenmarkov=1.8_13
# ~~~~~ hiddendomains v3.1 ~~~~~ #
conda install -y -c bioconda hiddendomains=3.1
%environment
export PATH="${PATH}:/conda/bin"
export LC_ALL=en_US.UTF-8
export LC_COLLATE=C
export LC_CTYPE=C
export LC_MEASUREMENT=C
export LC_MESSAGES=C
export LC_MONETARY=C
export LC_PAPER=C
export LC_TIME=C
export LANG=C.UTF-8
%labels
Author Nicolas Descostes
Version v0.0.5