-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Getting started with automated builds
- Loading branch information
0 parents
commit 4e74b58
Showing
1 changed file
with
16 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM bioconductor/release_core2 | ||
|
||
LABEL org.label-schema.schema-version = "1.0.0-rc.1" | ||
|
||
LABEL org.label-schema.vendor = "Blekhman Lab" | ||
LABEL org.label-schema.name = "dada2" | ||
LABEL org.label-schema.description = "Contains R and the DADA2 package (plus dependencies), used for 'fast and accurate sample inference from amplicon data with single-nucleotide resolution.'" | ||
LABEL org.label-schema.vcs-url = "https://github.com/blekhmanlab/docker/tree/master/dada2" | ||
LABEL org.label-schema.url = "https://benjjneb.github.io/dada2/" | ||
LABEL maintainer="[email protected]" | ||
|
||
LABEL org.label-schema.version = "1.8.0" | ||
|
||
RUN R -e 'source("https://bioconductor.org/biocLite.R"); biocLite("dada2")' | ||
|
||
CMD ["R"] |