From 6d7228c7cdef863cf37be015e66c881660fcff16 Mon Sep 17 00:00:00 2001 From: alxndrdiaz Date: Tue, 2 Jun 2026 20:36:46 -0600 Subject: [PATCH] add phynest --- phynest/0.1.12/Dockerfile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 phynest/0.1.12/Dockerfile diff --git a/phynest/0.1.12/Dockerfile b/phynest/0.1.12/Dockerfile new file mode 100644 index 00000000..45ea235a --- /dev/null +++ b/phynest/0.1.12/Dockerfile @@ -0,0 +1,23 @@ +FROM biocontainers/biocontainers:v1.0.0_cv5 + +LABEL base_image="biocontainers:v1.0.0_cv5" +LABEL version="1" +LABEL software="PhyNEST" +LABEL software.version="0.1.12" +LABEL about.summary="Phylogenetic Network Estimation using SiTe patterns" +LABEL about.home="https://github.com/sungsik-kong/PhyNEST.jl" +LABEL about.documentation="https://sungsik-kong.github.io/PhyNEST.jl/stable/" +LABEL about.license_file="https://github.com/sungsik-kong/PhyNEST.jl/blob/main/LICENSE" +LABEL about.license="MIT" +LABEL extra.identifiers.biotools="" +LABEL about.tags="Phylogenetics" + +MAINTAINER Alexander Ramos-Diaz + +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="PhyNEST", version="0.1.12")' \ No newline at end of file