SIMPApy 0.3.2__tar.gz → 0.3.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SIMPApy
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Normalized Single Sample Integrated Multiomics Pathway Analysis
5
5
  Author-email: Hasan Alsharoh <hasanalsharoh@gmail.com>
6
6
  License: Apache License (2.0)
@@ -25,7 +25,7 @@ Requires-Dist: scikit-learn==1.5.1
25
25
  Requires-Dist: seaborn==0.13.2
26
26
  Requires-Dist: statsmodels==0.14.1
27
27
  Requires-Dist: ipywidgets==8.1.5
28
- Requires-Dist: pillow==10.4.0
28
+ Requires-Dist: pillow==12.1.1
29
29
  Requires-Dist: kaleido==0.1.0.post1
30
30
  Dynamic: license-file
31
31
 
@@ -10,6 +10,9 @@ The package includes the following modules:
10
10
  - ranking: Contains functions for calculating ranking and mean signed deviation.
11
11
  - simpa: Contains the main functions for running SIMPA.
12
12
  - visualize: Contains functions for creating interactive plots of from SIMPA results.
13
+ - preprocess: Contains functions for preprocessing multi-omics data and creating aggregated dataframes for SIMPA module.
14
+ - analyze: Contains functions for analyzing SIMPA results, including calculating group differences, plotting volcano plots,
15
+ and calculating and plotting correlations between omics layers.
13
16
  """
14
17
  from .core import _sopa, sopa, load_sopa
15
18
  from .ranking import calculate_ranking, _calculate_msd
@@ -18,7 +21,7 @@ from .preprocess import _extract_tag_genes, _create_aggregated_dataframes, proce
18
21
  from .visualize import _create_traces, create_interactive_plot
19
22
  from .analyze import group_diffs, plot_volcano, calculate_correlation, plot_correlation_scatterplot
20
23
 
21
- __version__ = "0.3.2"
24
+ __version__ = "0.3.3"
22
25
  __all__ = [
23
26
  "calculate_ranking",
24
27
  "sopa",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SIMPApy
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Normalized Single Sample Integrated Multiomics Pathway Analysis
5
5
  Author-email: Hasan Alsharoh <hasanalsharoh@gmail.com>
6
6
  License: Apache License (2.0)
@@ -25,7 +25,7 @@ Requires-Dist: scikit-learn==1.5.1
25
25
  Requires-Dist: seaborn==0.13.2
26
26
  Requires-Dist: statsmodels==0.14.1
27
27
  Requires-Dist: ipywidgets==8.1.5
28
- Requires-Dist: pillow==10.4.0
28
+ Requires-Dist: pillow==12.1.1
29
29
  Requires-Dist: kaleido==0.1.0.post1
30
30
  Dynamic: license-file
31
31
 
@@ -9,5 +9,5 @@ scikit-learn==1.5.1
9
9
  seaborn==0.13.2
10
10
  statsmodels==0.14.1
11
11
  ipywidgets==8.1.5
12
- pillow==10.4.0
12
+ pillow==12.1.1
13
13
  kaleido==0.1.0.post1
@@ -31,7 +31,7 @@ dependencies = [
31
31
  "seaborn==0.13.2",
32
32
  "statsmodels==0.14.1",
33
33
  "ipywidgets==8.1.5",
34
- "pillow==10.4.0",
34
+ "pillow==12.1.1",
35
35
  "kaleido==0.1.0.post1"
36
36
  ]
37
37
 
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