Skip to content
Snippets Groups Projects
Commit 39d9d547 authored by Sascha Meiers's avatar Sascha Meiers
Browse files

install FreeBayes within Docker container

parent f6ed27d9
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,19 @@ RUN Rscript -e "source('http://bioconductor.org/biocLite.R'); \
devtools::install_github('daewoooo/StrandPhaseR@8011371c3a2f2d3a92116eb9df657b42d0b5e5b4', dependencies = NA);" \
&& rm -rf /usr/local/lib/R/site-library/BSgenome.Hsapiens.UCSC.hg38/extdata/single_sequences.2bit
# Install FreeBayes
RUN apt-get update \
&& BUILD_DEPS="git" \
&& apt-get install --no-install-recommends -y $BUILD_DEPS \
&& git clone --recursive git://github.com/ekg/freebayes.git \
&& cd freebayes \
&& make \
&& cd \
&& ln -s /freebayes/bin/freebayes /usr/local/sbin/freebayes \
&& apt-get remove -y $BUILD_DEPS \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/*
# Install MosaiCatcher (and clean up afterwards)
RUN apt-get update \
&& BUILD_DEPS="cmake \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment