-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added dockerfile, updated config to point to new container (#79)
- Loading branch information
1 parent
fa1548d
commit a7392b2
Showing
3 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
FROM quay.io/hdc-workflows/ubuntu:20.04 | ||
|
||
# bust cache | ||
ADD http://date.jsontest.com /etc/builddate | ||
|
||
LABEL maintainer "Jared Galloway <[email protected]>" \ | ||
version "1.1.4" \ | ||
description "Common PhIP-Seq Workflows" | ||
|
||
# install needed tools | ||
RUN apt-get update --fix-missing -qq && \ | ||
DEBIAN_FRONTEND=noninteractive \ | ||
apt-get install -y -q \ | ||
git \ | ||
curl \ | ||
locales \ | ||
libncurses5-dev \ | ||
libncursesw5-dev \ | ||
build-essential \ | ||
pkg-config \ | ||
zlib1g-dev \ | ||
python3 \ | ||
python3-pip \ | ||
python3-venv \ | ||
zip \ | ||
wget | ||
|
||
ENV VIRTUAL_ENV=/opt/venv | ||
RUN python3 -m venv $VIRTUAL_ENV | ||
ENV PATH="$VIRTUAL_ENV/bin:$PATH" | ||
|
||
# install phippery | ||
RUN pip install git+https://github.com/matsengrp/[email protected] | ||
|
||
# install pre-build binary Bowtie1.3 | ||
RUN curl -fksSL https://sourceforge.net/projects/bowtie-bio/files/bowtie/1.3.1/bowtie-1.3.1-linux-x86_64.zip \ | ||
--output bowtie-1.3.1-linux-x86_64.zip \ | ||
&& unzip bowtie-1.3.1-linux-x86_64.zip \ | ||
&& (cd /usr/bin/ && ln -s /bowtie-1.3.1-linux-x86_64/* ./) | ||
|
||
|
||
# install SAMtools | ||
RUN curl -fksSL https://github.com/samtools/samtools/releases/download/1.3.1/samtools-1.3.1.tar.bz2 | tar xj && \ | ||
cd samtools-1.3.1 && \ | ||
make all all-htslib && make install install-htslib | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters