mcDETECT 1.0.5__tar.gz → 1.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-1.0.5 → mcdetect-1.0.6}/PKG-INFO +1 -1
- {mcdetect-1.0.5 → mcdetect-1.0.6}/mcDETECT/model.py +1 -1
- {mcdetect-1.0.5 → mcdetect-1.0.6}/mcDETECT.egg-info/PKG-INFO +1 -1
- {mcdetect-1.0.5 → mcdetect-1.0.6}/setup.py +1 -1
- {mcdetect-1.0.5 → mcdetect-1.0.6}/LICENSE +0 -0
- {mcdetect-1.0.5 → mcdetect-1.0.6}/README.md +0 -0
- {mcdetect-1.0.5 → mcdetect-1.0.6}/mcDETECT/__init__.py +0 -0
- {mcdetect-1.0.5 → mcdetect-1.0.6}/mcDETECT.egg-info/SOURCES.txt +0 -0
- {mcdetect-1.0.5 → mcdetect-1.0.6}/mcDETECT.egg-info/dependency_links.txt +0 -0
- {mcdetect-1.0.5 → mcdetect-1.0.6}/mcDETECT.egg-info/requires.txt +0 -0
- {mcdetect-1.0.5 → mcdetect-1.0.6}/mcDETECT.egg-info/top_level.txt +0 -0
- {mcdetect-1.0.5 → mcdetect-1.0.6}/pyproject.toml +0 -0
- {mcdetect-1.0.5 → mcdetect-1.0.6}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: mcDETECT
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.6
|
|
4
4
|
Summary: mcDETECT: Decoding 3D Spatial Synaptic Transcriptomes with Subcellular-Resolution Spatial Transcriptomics
|
|
5
5
|
Home-page: https://github.com/chen-yang-yuan/mcDETECT
|
|
6
6
|
Author: Chenyang Yuan
|
|
@@ -377,7 +377,7 @@ class mcDETECT:
|
|
|
377
377
|
|
|
378
378
|
# count matrix
|
|
379
379
|
for k_idx, k in enumerate(genes):
|
|
380
|
-
target_gene = transcripts[transcripts['
|
|
380
|
+
target_gene = transcripts[transcripts['target'] == k]
|
|
381
381
|
count_gene, _, _ = np.histogram2d(target_gene['global_x'], target_gene['global_y'], bins = [x_bins, y_bins])
|
|
382
382
|
X[k_idx, :] = count_gene.flatten()
|
|
383
383
|
if k_idx % 50 == 0:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: mcDETECT
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.6
|
|
4
4
|
Summary: mcDETECT: Decoding 3D Spatial Synaptic Transcriptomes with Subcellular-Resolution Spatial Transcriptomics
|
|
5
5
|
Home-page: https://github.com/chen-yang-yuan/mcDETECT
|
|
6
6
|
Author: Chenyang Yuan
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name = "mcDETECT",
|
|
5
|
-
version = "1.0.
|
|
5
|
+
version = "1.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
|
|
File without changes
|