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.
Files changed (34) hide show
  1. {cellsp-2.1 → cellsp-2.2.2}/PKG-INFO +1 -1
  2. {cellsp-2.1 → cellsp-2.2.2}/cellSP/characterize/_sprawl.py +1 -1
  3. {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/_compare.py +1 -2
  4. {cellsp-2.1 → cellsp-2.2.2}/cellSP.egg-info/PKG-INFO +1 -1
  5. {cellsp-2.1 → cellsp-2.2.2}/pyproject.toml +3 -2
  6. {cellsp-2.1 → cellsp-2.2.2}/LICENSE +0 -0
  7. {cellsp-2.1 → cellsp-2.2.2}/README.md +0 -0
  8. {cellsp-2.1 → cellsp-2.2.2}/cellSP/__init__.py +0 -0
  9. {cellsp-2.1 → cellsp-2.2.2}/cellSP/characterize/__init__.py +0 -0
  10. {cellsp-2.1 → cellsp-2.2.2}/cellSP/characterize/_bicluster.py +0 -0
  11. {cellsp-2.1 → cellsp-2.2.2}/cellSP/characterize/_instant.py +0 -0
  12. {cellsp-2.1 → cellsp-2.2.2}/cellSP/characterize/_utils.py +0 -0
  13. {cellsp-2.1 → cellsp-2.2.2}/cellSP/datasets/__init__.py +0 -0
  14. {cellsp-2.1 → cellsp-2.2.2}/cellSP/datasets/_datasets.py +0 -0
  15. {cellsp-2.1 → cellsp-2.2.2}/cellSP/geo/__init__.py +0 -0
  16. {cellsp-2.1 → cellsp-2.2.2}/cellSP/geo/_geo.py +0 -0
  17. {cellsp-2.1 → cellsp-2.2.2}/cellSP/io/__init__.py +0 -0
  18. {cellsp-2.1 → cellsp-2.2.2}/cellSP/io/_io.py +0 -0
  19. {cellsp-2.1 → cellsp-2.2.2}/cellSP/model/__init__.py +0 -0
  20. {cellsp-2.1 → cellsp-2.2.2}/cellSP/model/_model.py +0 -0
  21. {cellsp-2.1 → cellsp-2.2.2}/cellSP/preprocessing/__init__.py +0 -0
  22. {cellsp-2.1 → cellsp-2.2.2}/cellSP/preprocessing/_extrapolate.py +0 -0
  23. {cellsp-2.1 → cellsp-2.2.2}/cellSP/preprocessing/_impute.py +0 -0
  24. {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/__init__.py +0 -0
  25. {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/_circularize.py +0 -0
  26. {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/_enrichment.py +0 -0
  27. {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/_raw.py +0 -0
  28. {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/_report.py +0 -0
  29. {cellsp-2.1 → cellsp-2.2.2}/cellSP/visualisation/_validation.py +0 -0
  30. {cellsp-2.1 → cellsp-2.2.2}/cellSP.egg-info/SOURCES.txt +0 -0
  31. {cellsp-2.1 → cellsp-2.2.2}/cellSP.egg-info/dependency_links.txt +0 -0
  32. {cellsp-2.1 → cellsp-2.2.2}/cellSP.egg-info/requires.txt +0 -0
  33. {cellsp-2.1 → cellsp-2.2.2}/cellSP.egg-info/top_level.txt +0 -0
  34. {cellsp-2.1 → cellsp-2.2.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cellSP
3
- Version: 2.1
3
+ Version: 2.2.2
4
4
  Summary: cellSP.
5
5
  Author-email: Bhavay Aggarwal <baggarwal9@gatech.edu>
6
6
  License-Expression: MIT
@@ -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'] += Z[['absX', 'absY']].values.shape[0]
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:
@@ -1,8 +1,7 @@
1
1
  import pandas as pd
2
2
  import numpy as np
3
3
  import matplotlib.pyplot as plt
4
- from itertools
5
- import combinations
4
+ from itertools import combinations
6
5
  from statsmodels.stats.proportion import proportions_ztest
7
6
 
8
7
  def apply_ztest_pos(c1, c2, n1, n2):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cellSP
3
- Version: 2.1
3
+ Version: 2.2.2
4
4
  Summary: cellSP.
5
5
  Author-email: Bhavay Aggarwal <baggarwal9@gatech.edu>
6
6
  License-Expression: MIT
@@ -4,14 +4,15 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [metadata]
6
6
  name = "cellSP"
7
- version = "2.1"
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.1"
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