-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 74591f5
Showing
1 changed file
with
26 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,26 @@ | ||
################## BASE IMAGE ###################### | ||
FROM biocontainers/biocontainers:latest | ||
|
||
################## METADATA ###################### | ||
LABEL base_image="biocontainers:latest" | ||
LABEL version="2" | ||
LABEL software="bwa" | ||
LABEL software.version="0.7.15" | ||
LABEL about.summary="Burrow-Wheeler Aligner for pairwise alignment between DNA sequences" | ||
LABEL about.home="http://bio-bwa.sourceforge.net/" | ||
LABEL about.documentation="http://bio-bwa.sourceforge.net/" | ||
LABEL about.license_file="http://bio-bwa.sourceforge.net/" | ||
LABEL about.license="SPDX:GPL-3.0" | ||
LABEL extra.identifiers.biotools="bwa" | ||
LABEL about.tags="Genomics" | ||
|
||
################## MAINTAINER ###################### | ||
MAINTAINER Saulo Alves Aflitos <[email protected]> | ||
|
||
################## INSTALLATION ###################### | ||
|
||
RUN conda install bwa=0.7.15 | ||
|
||
WORKDIR /data/ | ||
|
||
CMD ["bwa"] |