Skip to content
Open

Snaq #615

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
23 changes: 23 additions & 0 deletions snaq/1.1.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM biocontainers/biocontainers:v1.0.0_cv5

LABEL base_image="biocontainers:v1.0.0_cv5"
LABEL version="1"
LABEL software="SNaQ"
LABEL software.version="1.1.1"
LABEL about.summary="Maximum pseudolikelihood estimation of species network"
LABEL about.home="https://github.com/JuliaPhylo/SNaQ.jl"
LABEL about.documentation="https://juliaphylo.github.io/SNaQ.jl/dev/"
LABEL about.license_file="https://github.com/JuliaPhylo/SNaQ.jl/blob/main/LICENSE"
LABEL about.license="MIT License"
LABEL extra.identifiers.biotools="snaq"
LABEL about.tags="Phylogenetics"

MAINTAINER Alexander Ramos-Diaz <ra.ramos.diaz@gmail.com>

ENV DEBIAN_FRONTEND=noninteractive

RUN curl -fsSL https://install.julialang.org | sh -s -- -y

ENV PATH="/home/biodocker/.juliaup/bin:$PATH"

RUN julia -e 'using Pkg; Pkg.add(name="SNaQ", version="1.1.1")'