File tree Expand file tree Collapse file tree 4 files changed +22
-15
lines changed
Expand file tree Collapse file tree 4 files changed +22
-15
lines changed Original file line number Diff line number Diff line change 2323author = "Adam Gayoso and Jonathan Shor"
2424
2525# The full version, including alpha/beta/rc tags
26- release = "2.5.0 "
26+ release = "2.5.2 "
2727
2828
2929# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 33import collections
44import warnings
55
6+ import anndata
67import numpy as np
7- from sklearn .utils import check_array
8- from sklearn .utils .sparsefuncs_fast import inplace_csr_row_normalize_l1
9- from scipy .io import mmread
10- from scipy .stats import hypergeom
8+ import phenograph
119import scipy .sparse as sp_sparse
12- from scipy .sparse import csr_matrix
1310import tables
1411import scanpy as sc
15- import anndata
12+ from scipy .io import mmread
13+ from scipy .sparse import csr_matrix
14+ from scipy .stats import hypergeom
15+ from sklearn .utils import check_array
16+ from sklearn .utils .sparsefuncs_fast import inplace_csr_row_normalize_l1
1617from tqdm .auto import tqdm
17- import phenograph
1818
1919
2020def load_10x_h5 (file , genome ):
Original file line number Diff line number Diff line change 1- from sklearn .decomposition import PCA
2- import umap
3-
41import os
52import warnings
6- import numpy as np
7- from sklearn .utils import check_array
83
94import matplotlib
5+ import numpy as np
6+ import umap
7+ from sklearn .decomposition import PCA
8+ from sklearn .utils import check_array
109
1110try :
1211 os .environ ["DISPLAY" ]
Original file line number Diff line number Diff line change 1616
1717setup (
1818 name = "doubletdetection" ,
19- version = "2.5.0 " ,
19+ version = "2.5.2 " ,
2020 description = "Method to detect and enable removal of doublets from single-cell RNA-sequencing "
2121 "data" ,
2222 url = "https://github.com/JonathanShor/DoubletDetection" ,
2525 include_package_data = True ,
2626 packages = ["doubletdetection" ],
2727 install_requires = [
28- "phenograph @ https://api.github.com/repos/JonathanShor/PhenoGraph/tarball/v1.6" ,
28+ "numpy>=1.14.2" ,
29+ "pandas>=0.22.0" ,
30+ "scipy>=1.0.1" ,
31+ "scikit-learn" ,
32+ "tables>=3.4.2" ,
33+ "umap-learn>=0.3.7" ,
2934 "matplotlib>=3.1" ,
35+ "phenograph @ https://api.github.com/repos/JonathanShor/PhenoGraph/tarball/v1.6" ,
3036 "scanpy>=1.4.4" ,
3137 "louvain" ,
38+ "tqdm" ,
39+ "anndata" ,
3240 ],
3341)
You can’t perform that action at this time.
0 commit comments