This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow .h5ad, .h5 and mtx as input and fix requirements (#264)
* Update utils.py to include `_read_mtx`, `_read_h5ad` and `_read_h5` * Update `method_launcher.py` * Update `cpdb_statistical_analysis_helper.py` and `cpdb_statistical_analysis_complex_method.py` * Requirements: drop pandas versions (fix compatibility with python versions); add numpy, h5py and anndata; for now scikit-learn (geosketch dependency); remains fixed at 0.22 until further testing of geosketch v1.2 * Update `requirements.txt` and `win-requirements.txt` and make `setup.py` pickup requirements from requirements.txt Co-authored-by: @prete
- Loading branch information
Showing
13 changed files
with
124 additions
and
76 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
scikit-learn==0.22 | ||
click>=6.7,<6.7.99 | ||
pandas>=0.23,<0.25.99 | ||
pandas | ||
numpy | ||
scikit-learn==0.22 | ||
flask>=1.0,<1.0.99 | ||
Flask-RESTful>=0.3,<0.3.99 | ||
Flask-Testing>=0.7,<0.7.99 | ||
SQLAlchemy>=1.3,<1.3.99 | ||
PyYAML>=5.1,<5.1.99 | ||
requests>=2.19,<2.19.99 | ||
requests | ||
pika>=0.12,<0.12.99 | ||
boto3>=1.7,<1.7.99 | ||
geosketch==0.3 | ||
rpy2>=3.0.4,<3.0.99 | ||
tqdm>=4.32,<4.32.99 | ||
cython>=0.29,<0.29.99 | ||
Werkzeug>=1.0.1,<1.0.99 | ||
cython>=0.29,<0.29.9 | ||
h5py<3.0.0 | ||
anndata>=0.7,<=0.75 |
Oops, something went wrong.