Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BBtools and seqtk #39

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions bbtools/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# DOCKERFILE for BBtools
FROM ubuntu:16.04
MAINTAINER Pedro Cerqueira, pedro.cerqueira@medicina.ulisboa.pt

#Update and install dependencies
RUN apt-get update && apt-get -y install \
bash \
wget \
default-jdk

WORKDIR /NGStools/

#Download and untar BBtools
RUN wget https://sourceforge.net/projects/bbmap/files/BBMap_38.44.tar.gz/download -O bbtools.tar.gz && tar -xvzf bbtools.tar.gz

RUN rm bbtools.tar.gz

#Add BBtools to environment variable
ENV PATH="/NGStools/bbmap:$PATH"
26 changes: 26 additions & 0 deletions seqtk/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# DOCKERFILE for seqtk
FROM ubuntu:16.04
MAINTAINER Pedro Cerqueira, pedro.cerqueira@medicina.ulisboa.pt


WORKDIR /NGStools/

#Update and install dependencies
RUN apt-get update && apt-get -y install \
bash \
build-essential \
make \
git \
zlib1g-dev

#Clone seqtk from GitHub repo
RUN git clone https://github.com/lh3/seqtk.git

WORKDIR /NGStools/seqtk

#Build seqtk
RUN make

#Add seqtk to
ENV PATH="/NGStools/seqtk:$PATH"