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

adding abismal Dockerfile #415

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
47 changes: 47 additions & 0 deletions abismal/1.0.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
################## BASE IMAGE ######################

FROM biocontainers/biocontainers:v1.1.0_cv2

################## METADATA ######################

LABEL base_image="biocontainers:v1.1.0_cv2"
LABEL version="1"
LABEL software="abismal"
LABEL software.version="1.0.0"
LABEL about.summary="abismal is a fast and memory-efficient mapper for short whole genome bisulfite sequencing reads"
LABEL about.home="http://smithlabcode.github.io/abismal"
LABEL about.documentation="http://smithlabcode.github.io/abismal"
LABEL about.license_file="http://smithlabcode.github.io/abismal"
LABEL about.license="GPL 3.0"
LABEL extra.identifiers.biotools="abismal"
LABEL about.tags="Genomics"
LABEL extra.binaries="abismal"

################## MAINTAINER ######################
MAINTAINER Guilherme Sena <[email protected]>

################## INSTALLATION ######################
ENV ZIP=abismal-1.0.0zip
ENV URL=https://github.com/smithlabcode/abismal/releases/download/v1.0.0
ENV FOLDER=abismal-1.0.0-linux-x86_64
ENV DST=/home/biodocker/bin
ENV ULOCAL=/usr/local/bin

USER 0

RUN wget $URL/$ZIP -O $DST/$ZIP && \
unzip $DST/$ZIP -d $DST && \
rm $DST/$ZIP && \
mv $DST/$FOLDER/* $DST && \
rmdir $DST/$FOLDER

RUN apt update
RUN apt install python3 -y

RUN ln -s $DST/* $ULOCAL/

USER biodocker

WORKDIR /data

# CMD ["abismal"]