-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added oxford nanopore basecallers to dockerfiles
- Loading branch information
Showing
6 changed files
with
69 additions
and
36 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,27 @@ | ||
FROM continuumio/miniconda3:latest | ||
|
||
LABEL maintainer "Saad Khan <[email protected]>" | ||
LABEL maintainer "Ryan Forster <[email protected]>" | ||
|
||
RUN apt-get -y update && \ | ||
apt-get -y upgrade && \ | ||
apt-get -y install gcc make g++ curl | ||
|
||
RUN git clone https://github.com/artic-network/artic-ncov2019.git | ||
|
||
# Install Flappie and runnie, the free versions of Oxford Nanopore's basecallers | ||
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash && \ | ||
apt-get install git-lfs | ||
RUN git clone https://github.com/nanoporetech/flappie && \ | ||
cd flappie && \ | ||
make flappie && \ | ||
make runnie | ||
|
||
WORKDIR /artic-ncov2019 | ||
|
||
RUN conda env create -f environment.yml | ||
|
||
RUN mkdir analysis | ||
|
||
RUN echo "source activate artic-ncov2019" > ~/.bashrc | ||
ENV PATH /opt/conda/envs/artic-ncov2019/bin:$PATH |
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,7 @@ | ||
This Image contains the artic utilities along with the flappie and runnie | ||
basecallers by Oxford Nanopore. | ||
|
||
# Usage | ||
|
||
docker pull skhan8/artic | ||
docker run -it skhan8/artic <your command> |
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,27 @@ | ||
FROM continuumio/miniconda3:latest | ||
|
||
LABEL maintainer "Saad Khan <[email protected]>" | ||
LABEL maintainer "Ryan Forster <[email protected]>" | ||
|
||
RUN apt-get -y update && \ | ||
apt-get -y upgrade && \ | ||
apt-get -y install gcc make g++ curl | ||
|
||
RUN git clone https://github.com/artic-network/artic-ncov2019.git | ||
|
||
# Install Flappie and runnie, the free versions of Oxford Nanopore's basecallers | ||
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash && \ | ||
apt-get install git-lfs | ||
RUN git clone https://github.com/nanoporetech/flappie && \ | ||
cd flappie && \ | ||
make flappie && \ | ||
make runnie | ||
|
||
WORKDIR /artic-ncov2019 | ||
|
||
RUN conda env create -f environment-medaka.yml | ||
|
||
RUN mkdir analysis | ||
|
||
RUN echo "source activate artic-ncov2019" > ~/.bashrc | ||
ENV PATH /opt/conda/envs/artic-ncov2019/bin:$PATH |
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,8 @@ | ||
This Image contains the version of the artic utilities which use [medaka](https://github.com/nanoporetech/medaka), a | ||
sequence correction tool which relies on neural networks. | ||
In addition, we include the flappie and runnie basecallers by Oxford Nanopore. | ||
|
||
# Usage | ||
|
||
docker pull skhan8/artic:medaka | ||
docker run -it skhan8/artic:medaka <your command> |
This file was deleted.
Oops, something went wrong.