-
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.
* squash * revert changes to installation * building takes half a cpu
- Loading branch information
1 parent
566df04
commit c8c08c8
Showing
57 changed files
with
158 additions
and
140 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
docker/openproblems-python-batch-integration/requirements.txt
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,28 @@ | ||
FROM singlecellopenproblems/openproblems:latest | ||
|
||
ARG NB_USER="sagemaker-user" | ||
ARG NB_UID="1000" | ||
ARG NB_GID="100" | ||
|
||
USER root | ||
WORKDIR / | ||
|
||
# Install pybedtools dependency | ||
ARG BUILD_PACKAGES="" | ||
ARG PACKAGE_VERSION=2.27.1 | ||
RUN apt-get update && \ | ||
apt-get install --yes git openssl build-essential zlib1g-dev && \ | ||
cd /tmp && \ | ||
git clone https://github.com/arq5x/bedtools2.git && \ | ||
cd bedtools2 && \ | ||
git checkout v$PACKAGE_VERSION && \ | ||
make && \ | ||
mv bin/* /usr/local/bin && \ | ||
cd / | ||
|
||
# install dependencies and openproblems | ||
COPY ./docker/openproblems-python-bedtools/requirements.txt ./requirements.txt | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
|
||
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,12 @@ | ||
# openproblems-python-extras Docker image | ||
|
||
Base image: singlecellopenproblems/openproblems | ||
|
||
OS: Debian Stretch | ||
|
||
Python: 3.8 | ||
|
||
Python packages: | ||
|
||
* pybedtools | ||
* pyensembl |
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,2 @@ | ||
pybedtools==0.9.* | ||
pyensembl==2.0.* |
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,17 +1,7 @@ | ||
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 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,11 @@ | ||
git+https://github.com/BayraktarLab/cell2location.git@7e7aa231cc61ff460da14402fa3b9a1fa3ec69ac | ||
git+https://github.com/czbiohub/molecular-cross-validation@04d9df0 | ||
git+https://github.com/michalk8/neuralee@8946abf # contains gradient error fix | ||
jax==0.3.23 | ||
jaxlib==0.3.22 | ||
scalex==1.0.2 | ||
scikit-misc==0.1.* | ||
scvi-tools~=0.17 # pinned in #313 | ||
tangram-sc==1.0.* | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM singlecellopenproblems/openproblems:latest | ||
|
||
ARG NB_USER="sagemaker-user" | ||
ARG NB_UID="1000" | ||
ARG NB_GID="100" | ||
|
||
USER root | ||
WORKDIR / | ||
|
||
# install dependencies and openproblems | ||
COPY ./docker/openproblems-python-tensorflow/requirements.txt ./requirements.txt | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
|
||
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 @@ | ||
git+https://github.com/Avsecz/kopt@6a5c890 # master | ||
git+https://github.com/scottgigante-immunai/dca@1f4edbc # patch-1 contains tf version bump | ||
protobuf==3.20.* | ||
tensorflow==2.9.0 |
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 |
---|---|---|
|
@@ -28,4 +28,4 @@ R packages: | |
Python packages: | ||
|
||
* rpy2 | ||
* anndata2ri>=1.0.6 | ||
* anndata2ri>=1.1 |
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,6 +46,7 @@ [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@v1.0.2 | ||
git+https://github.com/theislab/scib@f0be826 | ||
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,3 +1,8 @@ | ||
git+https://github.com/theislab/[email protected] | ||
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 | ||
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.