mcDETECT 2.0.4__tar.gz → 2.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mcDETECT might be problematic. Click here for more details.
- {mcdetect-2.0.4 → mcdetect-2.0.6}/PKG-INFO +1 -1
- mcdetect-2.0.6/mcDETECT/__init__.py +6 -0
- {mcdetect-2.0.4 → mcdetect-2.0.6}/mcDETECT/model.py +2 -1
- {mcdetect-2.0.4 → mcdetect-2.0.6}/mcDETECT.egg-info/PKG-INFO +1 -1
- {mcdetect-2.0.4 → mcdetect-2.0.6}/setup.py +1 -1
- mcdetect-2.0.4/mcDETECT/__init__.py +0 -6
- {mcdetect-2.0.4 → mcdetect-2.0.6}/LICENSE +0 -0
- {mcdetect-2.0.4 → mcdetect-2.0.6}/README.md +0 -0
- {mcdetect-2.0.4 → mcdetect-2.0.6}/mcDETECT/utils.py +0 -0
- {mcdetect-2.0.4 → mcdetect-2.0.6}/mcDETECT.egg-info/SOURCES.txt +0 -0
- {mcdetect-2.0.4 → mcdetect-2.0.6}/mcDETECT.egg-info/dependency_links.txt +0 -0
- {mcdetect-2.0.4 → mcdetect-2.0.6}/mcDETECT.egg-info/requires.txt +0 -0
- {mcdetect-2.0.4 → mcdetect-2.0.6}/mcDETECT.egg-info/top_level.txt +0 -0
- {mcdetect-2.0.4 → mcdetect-2.0.6}/setup.cfg +0 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import anndata
|
|
2
|
+
import math
|
|
2
3
|
import miniball
|
|
3
4
|
import numpy as np
|
|
4
5
|
import pandas as pd
|
|
@@ -170,7 +171,7 @@ class mcDETECT:
|
|
|
170
171
|
num_individual.append(sphere_low.shape[0])
|
|
171
172
|
data_low[target_names.index(j)] = sphere_low
|
|
172
173
|
data_high[target_names.index(j)] = sphere_high
|
|
173
|
-
print(f"{target_names.index(j) + 1}
|
|
174
|
+
print(f"{target_names.index(j) + 1} of {len(target_names)} genes processed!")
|
|
174
175
|
|
|
175
176
|
return np.sum(num_individual), data_low, data_high
|
|
176
177
|
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name = "mcDETECT",
|
|
5
|
-
version = "2.0.
|
|
5
|
+
version = "2.0.6",
|
|
6
6
|
packages = find_packages(),
|
|
7
7
|
install_requires = ["anndata", "miniball", "numpy", "pandas", "rtree", "scanpy", "scikit-learn", "scipy", "shapely"],
|
|
8
8
|
author = "Chenyang Yuan",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|