-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PIP-1558-delta-machine-learning (#110)
- Loading branch information
Showing
15 changed files
with
262 additions
and
80 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
# The * ignores everything, then !src creates an exception for the src folder | ||
* | ||
!hic_pipeline/*.py | ||
!hic_pipeline/*.awk | ||
!hic_pipeline/*/ | ||
!requirements-delta.txt |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
FROM tensorflow/tensorflow:2.4.0-gpu@sha256:67dbafa3e7918a3efc67db49063aebdb282a0ebb1c124b7ca0db18207e6d7a22 | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
git \ | ||
libcurl4-openssl-dev\ | ||
zlib1g-dev \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /opt | ||
|
||
COPY requirements-delta.txt . | ||
|
||
RUN pip install -U pip==21.1.2 && \ | ||
pip install -r requirements-delta.txt && \ | ||
rm requirements-delta.txt | ||
|
||
RUN git clone https://github.com/aidenlab/straw.git && \ | ||
cd straw && \ | ||
git checkout 8f6175410a5c57645cc9d5116dd11db13106d72c && \ | ||
pip install ./pybind11_python && \ | ||
cd .. && \ | ||
rm -rf straw | ||
|
||
RUN git clone https://github.com/sa501428/deploy-delta.git && \ | ||
cd deploy-delta && \ | ||
git checkout v1.9 && \ | ||
chmod +x Deploy.py | ||
|
||
ENV PATH=/opt/deploy-delta:$PATH |
Oops, something went wrong.