mcDETECT 2.0.8__tar.gz → 2.0.9__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.8 → mcdetect-2.0.9}/PKG-INFO +1 -1
- mcdetect-2.0.9/mcDETECT/__init__.py +6 -0
- {mcdetect-2.0.8 → mcdetect-2.0.9}/mcDETECT/model.py +4 -4
- {mcdetect-2.0.8 → mcdetect-2.0.9}/mcDETECT.egg-info/PKG-INFO +1 -1
- {mcdetect-2.0.8 → mcdetect-2.0.9}/mcDETECT.egg-info/SOURCES.txt +1 -1
- {mcdetect-2.0.8 → mcdetect-2.0.9}/setup.py +1 -1
- mcdetect-2.0.8/mcDETECT/__init__.py +0 -6
- {mcdetect-2.0.8 → mcdetect-2.0.9}/LICENSE +0 -0
- {mcdetect-2.0.8 → mcdetect-2.0.9}/README.md +0 -0
- /mcdetect-2.0.8/mcDETECT/model_new_but_wrong.py → /mcdetect-2.0.9/mcDETECT/model_new_incorrect.py +0 -0
- {mcdetect-2.0.8 → mcdetect-2.0.9}/mcDETECT/utils.py +0 -0
- {mcdetect-2.0.8 → mcdetect-2.0.9}/mcDETECT.egg-info/dependency_links.txt +0 -0
- {mcdetect-2.0.8 → mcdetect-2.0.9}/mcDETECT.egg-info/requires.txt +0 -0
- {mcdetect-2.0.8 → mcdetect-2.0.9}/mcDETECT.egg-info/top_level.txt +0 -0
- {mcdetect-2.0.8 → mcdetect-2.0.9}/setup.cfg +0 -0
|
@@ -290,10 +290,10 @@ class mcDETECT:
|
|
|
290
290
|
|
|
291
291
|
|
|
292
292
|
# [MAIN] dataframe, granule metadata
|
|
293
|
-
def detect(self):
|
|
294
|
-
|
|
295
|
-
_, data_low, data_high = self.dbscan()
|
|
296
|
-
|
|
293
|
+
def detect(self, record_cell_id = False):
|
|
294
|
+
|
|
295
|
+
_, data_low, data_high = self.dbscan(record_cell_id = record_cell_id)
|
|
296
|
+
|
|
297
297
|
print("Merging spheres...")
|
|
298
298
|
sphere_low, sphere_high = self.merge_sphere(data_low), self.merge_sphere(data_high)
|
|
299
299
|
|
|
@@ -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.9",
|
|
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
|
/mcdetect-2.0.8/mcDETECT/model_new_but_wrong.py → /mcdetect-2.0.9/mcDETECT/model_new_incorrect.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|