Skip to content

Commit

Permalink
piecewise reg
Browse files Browse the repository at this point in the history
  • Loading branch information
hopedisastro committed Nov 14, 2024
1 parent 7ab394a commit 6584848
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion images.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ subread = '2.0.6'
talos = '6.1.0' # release to build, image names should have specific releases. Can build by naming side-branch
trtools = '6.0.2'
trtools_hope_version = 'skip-if-monomorphic' # specific branch name
trtools_nonlinear_sum = 'master'
trtools_nonlinear_sum = 'piecewise-reg'
vep_105 = '105.0'
vep_110 = 'release_110.1'
verifybamid = '2.0.1'
Expand Down
13 changes: 13 additions & 0 deletions trtools_nonlinear_sum/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM python:3.10-bullseye

ARG VERSION=${VERSION:-piecewise-reg}
ARG GIT_REPO=https://github.com/populationgenomics/TRTools-segreg.git

# Install necessary packages and clean up to reduce image size
RUN apt-get update && apt-get install --no-install-recommends -y \
git curl bzip2 zip && \
rm -rf /var/lib/apt/lists/* && \
rm -rf /var/cache/apt/*

# Install Python packages including piecewise_regression
RUN pip install --no-cache-dir metamist piecewise_regression git+${GIT_REPO}@${VERSION}

0 comments on commit 6584848

Please sign in to comment.