biodockerfiles

survivor-1.0.7

· Download · Edit · Report · Website

SURVIVOR is a tool set for simulating/evaluating SVs, merging and comparing SVs within and among samples, and includes various methods to reformat or summarize SVs.

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

WORKDIR /opt
RUN apt-get update \
    && apt-get install -y --no-install-recommends \
        build-essential \
        zlib1g-dev \
        wget \
    && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

RUN wget https://github.com/fritzsedlazeck/SURVIVOR/archive/1.0.7.tar.gz --no-check-certificate -O SURVIVOR.tar.gz \
    && tar xzvf SURVIVOR.tar.gz \
    && rm SURVIVOR.tar.gz

WORKDIR /opt/SURVIVOR-1.0.7/Debug/
RUN make \
    && ln -s /opt/SURVIVOR-1.0.7/Debug/SURVIVOR /usr/local/bin/SURVIVOR
WORKDIR /opt

CMD ["/bin/bash"]