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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcDETECT
3
- Version: 2.0.8
3
+ Version: 2.0.9
4
4
  Summary: Uncovering the dark transcriptome in polarized neuronal compartments with mcDETECT
5
5
  Home-page: https://github.com/chen-yang-yuan/mcDETECT
6
6
  Author: Chenyang Yuan
@@ -0,0 +1,6 @@
1
+ __version__ = "2.0.9"
2
+
3
+ from . import model
4
+ from . import utils
5
+
6
+ __all__ = ["model", "utils"]
@@ -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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcDETECT
3
- Version: 2.0.8
3
+ Version: 2.0.9
4
4
  Summary: Uncovering the dark transcriptome in polarized neuronal compartments with mcDETECT
5
5
  Home-page: https://github.com/chen-yang-yuan/mcDETECT
6
6
  Author: Chenyang Yuan
@@ -3,7 +3,7 @@ README.md
3
3
  setup.py
4
4
  mcDETECT/__init__.py
5
5
  mcDETECT/model.py
6
- mcDETECT/model_new_but_wrong.py
6
+ mcDETECT/model_new_incorrect.py
7
7
  mcDETECT/utils.py
8
8
  mcDETECT.egg-info/PKG-INFO
9
9
  mcDETECT.egg-info/SOURCES.txt
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name = "mcDETECT",
5
- version = "2.0.8",
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",
@@ -1,6 +0,0 @@
1
- __version__ = "2.0.8"
2
-
3
- from . import model
4
- from . import utils
5
-
6
- __all__ = ["model", "utils"]
File without changes
File without changes
File without changes
File without changes