-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmelt.def
More file actions
55 lines (50 loc) · 1.27 KB
/
melt.def
File metadata and controls
55 lines (50 loc) · 1.27 KB
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
Bootstrap: docker
From: ubuntu:20.04
%post
export TZ='Europe/Amsterdam'
export DEBIAN_FRONTEND=noninteractive
apt-get clean all && \
apt-get update && \
apt-get upgrade -y && \
apt-get install -y \
autoconf \
autogen \
build-essential \
curl \
libbz2-dev \
libcurl4-openssl-dev \
libhts3 \
libhts-dev \
liblzma-dev \
libncurses5-dev \
libnss-sss \
libssl-dev \
libxml2-dev \
libtbb2 \
zlib1g-dev \
bowtie2 \
default-jre \
wget \
cmake
# Installing bcf and samtools
wget https://github.com/samtools/bcftools/releases/download/1.19/bcftools-1.19.tar.bz2
wget https://github.com/samtools/samtools/releases/download/1.19.2/samtools-1.19.2.tar.bz2
tar xvjf bcftools-1.19.tar.bz2
tar xvjf samtools-1.19.2.tar.bz2
cd bcftools-1.19/
./configure
make
make install
cd ..
cd samtools-1.19.2/
make
make install
apt-get clean && \
rm -rf /var/lib/apt/lists/*
java --version
bowtie2 --version
%environment
export PATH=/bcftools-1.19:$PATH
export PATH=/samtools-1.19.2:$PATH
%labels
Author Tim Niemeijer