generated from populationgenomics/cpg-python-template-repo
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert all Docker restructuring (#384)
* giving up on docker restructuring for now * skip non-standard ClinVar chromosomes * Bump version: 3.2.2 → 3.2.3
- Loading branch information
1 parent
a004675
commit 4aa541f
Showing
9 changed files
with
24 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ permissions: | |
contents: read | ||
|
||
env: | ||
VERSION: 3.2.2 | ||
VERSION: 3.2.3 | ||
|
||
jobs: | ||
docker-prod: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,10 @@ | ||
FROM python:3.10-bullseye | ||
|
||
ARG HAIL_SHA=${HAIL_SHA:-8f6797b033d2e102575c40166cf0c977e91f834e} | ||
|
||
RUN apt update && apt install -y \ | ||
apt-transport-https \ | ||
bash \ | ||
build-essential \ | ||
bzip2 \ | ||
ca-certificates \ | ||
curl \ | ||
g++ \ | ||
gcc \ | ||
git \ | ||
gnupg \ | ||
liblapack3 \ | ||
libopenblas-base \ | ||
make \ | ||
openjdk-11-jdk-headless \ | ||
rsync \ | ||
software-properties-common \ | ||
wget \ | ||
zip && \ | ||
rm -r /var/lib/apt/lists/* && \ | ||
rm -r /var/cache/apt/* | ||
|
||
# Install Hail from the CPG fork. | ||
RUN git clone https://github.com/populationgenomics/hail.git && \ | ||
cd hail && \ | ||
git checkout $HAIL_SHA && \ | ||
cd hail && \ | ||
# Install locally, avoiding the need for a pip package. | ||
make install && \ | ||
cd ../.. && \ | ||
rm -rf hail | ||
|
||
COPY . / | ||
FROM australia-southeast1-docker.pkg.dev/analysis-runner/images/driver:latest | ||
|
||
COPY requirements.txt . | ||
COPY requirements-dev.txt . | ||
RUN pip install -r requirements.txt | ||
COPY README.md . | ||
COPY setup.py . | ||
COPY helpers helpers/ | ||
COPY reanalysis reanalysis/ | ||
RUN pip install . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
""" | ||
|
||
# Do not edit this file manually | ||
__version__ = '3.2.2' | ||
__version__ = '3.2.3' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ def read_reqs(filename: str) -> list[str]: | |
name='automated-interpretation-pipeline', | ||
description='CPG Variant Prioritisation', | ||
long_description=readme, | ||
version='3.2.2', | ||
version='3.2.3', | ||
author='Matthew Welland, CPG', | ||
author_email=('[email protected], ' '[email protected]'), | ||
package_data={'reanalysis': ['templates/*.jinja', 'reanalysis_global.toml']}, | ||
|