-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Quick update of README to replace ncov2019 with mpxv (#2)
- Loading branch information
Showing
4 changed files
with
20 additions
and
62 deletions.
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
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
FROM continuumio/miniconda3:latest | ||
LABEL authors="Matt Bull" \ | ||
description="Docker image containing all requirements for an Illumina ncov2019 pipeline" | ||
description="Docker image containing all requirements for an Illumina mpxv pipeline" | ||
|
||
COPY environments/extras.yml /extras.yml | ||
COPY environments/illumina/environment.yml /environment.yml | ||
RUN apt-get update && apt-get install -y curl g++ git make procps && apt-get clean -y | ||
RUN /opt/conda/bin/conda env create -f /environment.yml | ||
RUN /opt/conda/bin/conda env update -f /extras.yml -n artic-ncov2019-illumina && /opt/conda/bin/conda clean -a | ||
ENV PATH=/opt/conda/envs/artic-ncov2019-illumina/bin:$PATH | ||
RUN /opt/conda/bin/conda env update -f /extras.yml -n artic-mpxv-illumina && /opt/conda/bin/conda clean -a | ||
ENV PATH=/opt/conda/envs/artic-mpxv-illumina/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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: artic-ncov2019-illumina | ||
name: artic-mpxv-illumina | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
|