biodockerfiles

verifybamid-1.1.3

· Download · Edit · Report · Website

verifyBamID is a software that verifies whether the reads in particular file match previously known genotypes for an individual (or group of individuals), and checks whether the reads are contaminated as a mixture of two samples.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM ubuntu:16.04

RUN apt-get update \
    && apt-get install -y \
        build-essential \
        gcc-multilib \
        apt-utils \
        zlib1g-dev \
        git \
    && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

WORKDIR /tmp/

RUN git clone https://github.com/statgen/verifyBamID.git \
    && git clone https://github.com/statgen/libStatGen.git
    
WORKDIR /tmp/libStatGen
RUN git checkout tags/v1.0.14

WORKDIR /tmp/verifyBamID
RUN git checkout tags/v1.1.3 \
    && make \
    && cp /tmp/verifyBamID/bin/verifyBamID /usr/local/bin \
    && rm -rf /tmp/*