Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ LABEL org.opencontainers.image.vendor="MSKCC-OMICS-WORKFLOWS" \
org.opencontainers.image.created="2025-08-21T11:07:00Z" \
imageprivacy="False" \
org.opencontainers.image.licenses="GPL-3.0" \
org.opencontainers.image.version="1.5-msk" \
org.opencontainers.image.version="1.5.1-msk" \
org.opencontainers.image.source="https://github.com/mskcc/phylowgs" \
org.opencontainers.image.url="https://github.com/mskcc-omics-workflows/containers/containers/phylowgs/" \
org.opencontainers.image.title="Phylowgs" \
org.opencontainers.image.description="Application for inferring subclonal composition and evolution from whole-genome sequencing data."

ENV DEBIAN_FRONTEND=noninteractive
ENV PHYLOWGS_TAG="v1.5-msk"
ENV PHYLOWGS_TAG="v1.5.1-msk"
ARG TARGETPLATFORM

RUN apt-get update -y \
Expand All @@ -23,12 +23,12 @@ RUN apt-get update -y \
&& curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output /tmp/get-pip.py \
&& python2 /tmp/get-pip.py \
# Install phylowgs
&& git clone --branch 1.5 https://github.com/mskcc/phylowgs /tmp/phylowgs \
&& git clone --branch 1.5.1 https://github.com/mskcc/phylowgs /tmp/phylowgs \
&& pip2 install --no-cache-dir -r /tmp/phylowgs/requirements.txt \
&& cp -r /tmp/phylowgs/ /usr/bin \
&& g++ -I/usr/bin/phylowgs -o /usr/bin/phylowgs/mh.o -O3 /usr/bin/phylowgs/mh.cpp /usr/bin/phylowgs/util.cpp -I/usr/include -L/usr/lib/aarch64-linux-gnu -lgsl -lgslcblas -lm \
# Clean up
&& rm -r /tmp/phylowgs \
&& apt-get clean \
&& apt-get purge \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Loading