cellSP 2.1__tar.gz → 2.2.2__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.
- {cellsp-2.1 → cellsp-2.2.2}/PKG-INFO +1 -1
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/characterize/_sprawl.py +1 -1
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/_compare.py +1 -2
- {cellsp-2.1 → cellsp-2.2.2}/cellSP.egg-info/PKG-INFO +1 -1
- {cellsp-2.1 → cellsp-2.2.2}/pyproject.toml +3 -2
- {cellsp-2.1 → cellsp-2.2.2}/LICENSE +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/README.md +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/__init__.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/characterize/__init__.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/characterize/_bicluster.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/characterize/_instant.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/characterize/_utils.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/datasets/__init__.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/datasets/_datasets.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/geo/__init__.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/geo/_geo.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/io/__init__.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/io/_io.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/model/__init__.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/model/_model.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/preprocessing/__init__.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/preprocessing/_extrapolate.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/preprocessing/_impute.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/__init__.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/_circularize.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/_enrichment.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/_raw.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/_report.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/_validation.py +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP.egg-info/SOURCES.txt +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP.egg-info/dependency_links.txt +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP.egg-info/requires.txt +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/cellSP.egg-info/top_level.txt +0 -0
- {cellsp-2.1 → cellsp-2.2.2}/setup.cfg +0 -0
|
@@ -122,7 +122,7 @@ def run_sprawl(adata_st, methods = ['Peripheral', 'Radial', 'Punctate', 'Central
|
|
|
122
122
|
cell_dict['boundaries'][0], cell_dict['spot_coords'][0], cell_dict['spot_genes'][0] = vertices, spot_coords, spot_genes
|
|
123
123
|
cell_dict['zslices'].append(0)
|
|
124
124
|
cell_dict['gene_counts'] = cell.gene.value_counts().to_dict()
|
|
125
|
-
cell_dict['n'] +=
|
|
125
|
+
cell_dict['n'] += cell[['absX', 'absY']].values.shape[0]
|
|
126
126
|
if "gene_counts" in cell_dict:
|
|
127
127
|
cell_dict['genes'] = np.unique(list(cell_dict['gene_counts'].keys()))
|
|
128
128
|
if len(cell_dict["zslices"]) > 0 and min(cell_dict['gene_counts'].values()) >= 2:
|
|
@@ -4,14 +4,15 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[metadata]
|
|
6
6
|
name = "cellSP"
|
|
7
|
-
version = "2.
|
|
7
|
+
version = "2.2.2"
|
|
8
|
+
|
|
8
9
|
|
|
9
10
|
[tool.setuptools.packages]
|
|
10
11
|
find = {} # Scan the project directory with the default parameters
|
|
11
12
|
|
|
12
13
|
[project]
|
|
13
14
|
name = "cellSP"
|
|
14
|
-
version = "2.
|
|
15
|
+
version = "2.2.2"
|
|
15
16
|
authors = [
|
|
16
17
|
{ name="Bhavay Aggarwal", email="baggarwal9@gatech.edu" },
|
|
17
18
|
]
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|