spatools 0.2__tar.gz → 0.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.
- {spatools-0.2 → spatools-0.2.2}/PKG-INFO +2 -1
- {spatools-0.2 → spatools-0.2.2}/pyproject.toml +3 -1
- spatools-0.2.2/spatools/tools/__init__.py +27 -0
- {spatools-0.2 → spatools-0.2.2}/spatools.egg-info/PKG-INFO +2 -1
- {spatools-0.2 → spatools-0.2.2}/spatools.egg-info/requires.txt +1 -0
- spatools-0.2/spatools/tools/__init__.py +0 -20
- {spatools-0.2 → spatools-0.2.2}/LICENCE +0 -0
- {spatools-0.2 → spatools-0.2.2}/README.md +0 -0
- {spatools-0.2 → spatools-0.2.2}/Tutorials/manual_cuts.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/scripts/convert_point_in_barcodes.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/scripts/main.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/scripts/process_img.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/setup.cfg +0 -0
- {spatools-0.2 → spatools-0.2.2}/setup.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools/__init__.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools/constants.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools/plotting/__init__.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools/plotting/pl.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools/processing/__init__.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools/processing/core.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools/processing/preprocessing_.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools/processing/processing_.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools/processing/utils.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools/reading/__init__.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools/reading/read_.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools/tools/tl.py +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools.egg-info/SOURCES.txt +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools.egg-info/dependency_links.txt +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools.egg-info/entry_points.txt +0 -0
- {spatools-0.2 → spatools-0.2.2}/spatools.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: spatools
|
|
3
|
-
Version: 0.2
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Author: Pedro Videira Pinho, Mariana Boroni
|
|
5
5
|
Author-email: Pedro Videira Pinho <pedrovp161@gmail.com>, Mariana Lima Boroni Martins <mariana.boroni@inca.gov.br>
|
|
6
6
|
License: MIT
|
|
@@ -20,6 +20,7 @@ Requires-Dist: matplotlib>=3.7
|
|
|
20
20
|
Requires-Dist: pandas>=2.0
|
|
21
21
|
Requires-Dist: numpy>=1.26
|
|
22
22
|
Requires-Dist: scipy>=1.10
|
|
23
|
+
Requires-Dist: pmenu_lib>=1.2.2
|
|
23
24
|
Dynamic: author
|
|
24
25
|
Dynamic: license-file
|
|
25
26
|
Dynamic: requires-python
|
|
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
|
|
|
7
7
|
# PEP 621 metadata section.
|
|
8
8
|
[project]
|
|
9
9
|
name = "spatools" # from setup.py: name
|
|
10
|
-
version = "0.2" # from setup.py: version
|
|
10
|
+
version = "0.2.2" # from setup.py: version
|
|
11
11
|
readme = "README.md" # or path to your long description file
|
|
12
12
|
requires-python = ">=3.8" # from setup.py: python_requires
|
|
13
13
|
license = { text = "MIT" } # replace with your license or use file = "LICENSE"
|
|
@@ -34,7 +34,9 @@ dependencies = [
|
|
|
34
34
|
"pandas>=2.0",
|
|
35
35
|
"numpy>=1.26",
|
|
36
36
|
"scipy>=1.10",
|
|
37
|
+
"pmenu_lib>=1.2.2"
|
|
37
38
|
]
|
|
39
|
+
|
|
38
40
|
# Project URLs (optional)
|
|
39
41
|
[project.urls]
|
|
40
42
|
Homepage = "https://pypi.org/project/spatools/"
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
from .tl import (
|
|
2
|
+
correlate_distances,
|
|
3
|
+
remove_random_rows,
|
|
4
|
+
translate_anndata_genes,
|
|
5
|
+
merge_clusters,
|
|
6
|
+
remove_spots,
|
|
7
|
+
z_score,
|
|
8
|
+
spatial_spearman,
|
|
9
|
+
spearman_correlation_matrix,
|
|
10
|
+
SelectionTool,
|
|
11
|
+
mesure_distances,
|
|
12
|
+
check_spots_analysed
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
__all__ = [
|
|
16
|
+
'correlate_distances',
|
|
17
|
+
'remove_random_rows',
|
|
18
|
+
'translate_anndata_genes',
|
|
19
|
+
'merge_clusters',
|
|
20
|
+
'remove_spots',
|
|
21
|
+
'z_score',
|
|
22
|
+
'spatial_spearman',
|
|
23
|
+
'spearman_correlation_matrix',
|
|
24
|
+
'SelectionTool',
|
|
25
|
+
'mesure_distances',
|
|
26
|
+
'check_spots_analysed'
|
|
27
|
+
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: spatools
|
|
3
|
-
Version: 0.2
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Author: Pedro Videira Pinho, Mariana Boroni
|
|
5
5
|
Author-email: Pedro Videira Pinho <pedrovp161@gmail.com>, Mariana Lima Boroni Martins <mariana.boroni@inca.gov.br>
|
|
6
6
|
License: MIT
|
|
@@ -20,6 +20,7 @@ Requires-Dist: matplotlib>=3.7
|
|
|
20
20
|
Requires-Dist: pandas>=2.0
|
|
21
21
|
Requires-Dist: numpy>=1.26
|
|
22
22
|
Requires-Dist: scipy>=1.10
|
|
23
|
+
Requires-Dist: pmenu_lib>=1.2.2
|
|
23
24
|
Dynamic: author
|
|
24
25
|
Dynamic: license-file
|
|
25
26
|
Dynamic: requires-python
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
from .tl import (
|
|
2
|
-
process_image,
|
|
3
|
-
remove_random_rows,
|
|
4
|
-
convert_df_ens,
|
|
5
|
-
convert_anndata_ens,
|
|
6
|
-
merge_clusters,
|
|
7
|
-
correlate_distances,
|
|
8
|
-
z_score
|
|
9
|
-
)
|
|
10
|
-
|
|
11
|
-
__all__ = [
|
|
12
|
-
'correlate_distances',
|
|
13
|
-
"z_score",
|
|
14
|
-
'convert_df_ens',
|
|
15
|
-
'remove_random_rows',
|
|
16
|
-
'convert_anndata_ens',
|
|
17
|
-
'merge_clusters',
|
|
18
|
-
"z_score",
|
|
19
|
-
"process_image"
|
|
20
|
-
]
|
|
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
|