-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Run pip check on build (#678)"
This reverts commit c8c08c8.
- Loading branch information
1 parent
c8c08c8
commit 4ac6faf
Showing
57 changed files
with
140 additions
and
158 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
FROM singlecellopenproblems/openproblems-r-base:latest | ||
|
||
USER root | ||
WORKDIR / | ||
|
||
ARG NB_USER="sagemaker-user" | ||
ARG NB_UID="1000" | ||
ARG NB_GID="100" | ||
|
||
RUN sed -i '$ d' /etc/apt/sources.list | ||
RUN \ | ||
apt-get update --allow-releaseinfo-change && \ | ||
apt-get -y install --no-install-recommends gcc git python3-llvmlite && \ | ||
apt-get autoremove -y && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Install Python packages | ||
COPY ./docker/openproblems-python-batch-integration/requirements.txt ./requirements.txt | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
# force reinstall annoy addresses https://github.com/spotify/annoy/issues/513 | ||
RUN pip install --no-cache-dir --force annoy==1.17.0 | ||
|
||
USER $NB_UID | ||
WORKDIR /home/$NB_USER |
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,15 @@ | ||
# openproblems-python-extras Docker image | ||
|
||
Base image: singlecellopenproblems/openproblems-r-base | ||
|
||
OS: Debian Stretch | ||
|
||
Python: 3.8 | ||
|
||
Python packages: | ||
|
||
* scIB | ||
* mnnpy | ||
* scanorama | ||
* bbknn | ||
* scVI |
6 changes: 6 additions & 0 deletions
6
docker/openproblems-python-batch-integration/requirements.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,6 @@ | ||
annoy==1.17.1 | ||
bbknn==1.5.* | ||
git+https://github.com/scottgigante-immunai/mnnpy@eb4c551 # branch: patch-2 | ||
git+https://github.com/theislab/scib@77ab015 | ||
scanorama==1.7.0 | ||
scvi-tools~=0.16 # pinned in #313 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,7 +1,17 @@ | ||
cmake==3.24.1.1 | ||
git+https://github.com/BayraktarLab/cell2location.git@7e7aa231cc61ff460da14402fa3b9a1fa3ec69ac | ||
git+https://github.com/czbiohub/molecular-cross-validation@04d9df0 | ||
git+https://github.com/jorvis/Multicore-TSNE@6832575 | ||
git+https://github.com/KrishnaswamyLab/[email protected]#subdirectory=python | ||
git+https://github.com/michalk8/neuralee@8946abf # contains gradient error fix | ||
git+https://github.com/scottgigante-immunai/knn-smoothing@python_package | ||
magic-impute==3.0.* | ||
phate==1.0.* | ||
pybedtools==0.9.* | ||
pyensembl==2.0.* | ||
scalex==1.0.2 | ||
scvi-tools==0.16.* | ||
tangram-sc==1.0.* | ||
tensorflow-cpu==2.9.* | ||
torch==1.12.* | ||
xgboost==1.6.* |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
jax==0.3.23 | ||
jaxlib==0.3.22 | ||
scikit-misc==0.1.* | ||
scvi-tools~=0.17 # pinned in #313 | ||
xgboost==1.6.* |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,18 @@ | ||
FROM singlecellopenproblems/openproblems:latest | ||
|
||
ARG NB_USER="sagemaker-user" | ||
ARG NB_UID="1000" | ||
ARG NB_GID="100" | ||
|
||
USER root | ||
WORKDIR / | ||
|
||
# Install Python packages | ||
COPY ./docker/openproblems-python-tf2.4/requirements.txt ./requirements.txt | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
|
||
# tensorflow downgrades numpy and h5py (and therefore anndata) | ||
RUN pip install --no-cache-dir -e /usr/src/singlecellopenproblems | ||
|
||
USER $NB_UID | ||
WORKDIR /home/$NB_USER |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dca==0.3.* | ||
keras>=2.4,<2.11 | ||
pyyaml==6.0 # pinned in #431 | ||
tensorflow-cpu==2.4.* # pinned in dca |
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 |
---|---|---|
|
@@ -28,4 +28,4 @@ R packages: | |
Python packages: | ||
|
||
* rpy2 | ||
* anndata2ri>=1.1 | ||
* anndata2ri>=1.0.6 |
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 |
---|---|---|
|
@@ -46,7 +46,6 @@ [email protected] | |
[email protected] | ||
[email protected] | ||
[email protected] | ||
theislab/kBET@a10ffea # master | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
|
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,3 +1,3 @@ | ||
git+https://github.com/KrishnaswamyLab/[email protected]#subdirectory=python | ||
git+https://github.com/theislab/scib@f0be826 | ||
git+https://github.com/theislab/scib@v1.0.2 | ||
xgboost==1.6.* |
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,8 +1,3 @@ | ||
annoy==1.17.1 | ||
bbknn==1.5.* | ||
git+https://github.com/scottgigante-immunai/mnnpy@eb4c551 # branch: patch-2 | ||
git+https://github.com/theislab/scib@f0be826 | ||
git+https://github.com/theislab/[email protected] | ||
harmony-pytorch==0.1.* | ||
scanorama==1.7.0 | ||
scvi-tools~=0.16 # pinned in #313 | ||
torch==1.13.* |
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
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
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
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
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
Oops, something went wrong.