· Download · Edit · Report · Website
BCFtools is a set of utilities that manipulate variant calls in the Variant Call Format (VCF) and its binary counterpart BCF.
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
FROM ubuntu:18.04
RUN apt-get update \
&& apt-get install -y \
wget \
bzip2 \
build-essential \
automake \
autoconf \
gcc \
zlib1g-dev \
libgsl0-dev \
libbz2-dev \
liblzma-dev \
libperl-dev \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
WORKDIR /opt
RUN wget https://github.com/samtools/bcftools/releases/download/1.10.2/bcftools-1.10.2.tar.bz2 \
&& tar xjf bcftools-1.10.2.tar.bz2 \
&& rm bcftools-1.10.2.tar.bz2
WORKDIR /opt/bcftools-1.10.2
RUN autoheader \
&& autoconf \
&& ./configure --enable-libgsl --enable-perl-filters \
&& make \
&& make install
WORKDIR /opt
ENV BCFTOOLS_PLUGINS /opt/bcftools-1.10.2/plugins