scez 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl

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 scez might be problematic. Click here for more details.

scez/__init__.py CHANGED
@@ -8,8 +8,9 @@ import scanpy as sc
8
8
  import matplotlib.pyplot as plt
9
9
 
10
10
  import tomli
11
+ from pathlib import Path
11
12
 
12
- toml_dict = tomli.load(open('pyproject.toml','rb'))
13
+ toml_dict = tomli.load(open(Path(__file__).parent.parent / 'pyproject.toml','rb'))
13
14
  __version__ = toml_dict['tool']['poetry']['version']
14
15
 
15
16
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scez
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Single Cell Analysis, Easy Mode!
5
5
  License: MIT
6
6
  Author: Abe Arab
@@ -14,20 +14,33 @@ Classifier: Programming Language :: Python :: 3.11
14
14
  Classifier: Programming Language :: Python :: 3.12
15
15
  Requires-Dist: adjustText (>=0.7.3,<0.8.0)
16
16
  Requires-Dist: adpbulk (>=0.1.4,<0.2.0)
17
- Requires-Dist: anndata (>=0.7.4,<0.8.0)
17
+ Requires-Dist: anndata (>=0.8.0,<0.9.0)
18
18
  Requires-Dist: blitzgsea (>=1.3.0,<2.0.0)
19
+ Requires-Dist: bottleneck (>=1.3.6,<2.0.0)
19
20
  Requires-Dist: matplotlib (>=3.7,<4.0)
20
- Requires-Dist: numpy (>=1.17.0,<2.0.0)
21
- Requires-Dist: pandas (>=0.21,<0.22)
21
+ Requires-Dist: numpy (>=1.26.0,<2.0.0)
22
+ Requires-Dist: pandas (>=2.1.4,<3.0.0)
22
23
  Requires-Dist: pydeseq2 (>=0.4.0,<0.5.0)
23
24
  Requires-Dist: pytdc (>=1.0.0,<2.0.0)
25
+ Requires-Dist: scanpy (>=1.9.6,<2.0.0)
24
26
  Requires-Dist: seaborn (>=0.12.2,<0.13.0)
27
+ Requires-Dist: tomli
25
28
  Requires-Dist: tqdm
26
29
  Project-URL: Source, https://github.com/abearab/scez
27
30
  Description-Content-Type: text/markdown
28
31
 
29
32
  ## scez – single cell, easy mode
30
33
  [![package](https://github.com/abearab/scez/actions/workflows/main.yml/badge.svg)](https://github.com/abearab/scez/actions/workflows/main.yml)
34
+ [![PyPI version](https://badge.fury.io/py/scez.svg)](https://badge.fury.io/py/scez)
35
+ [![Downloads](https://static.pepy.tech/badge/scez)](https://pepy.tech/project/scez)
36
+ [![Downloads](https://static.pepy.tech/badge/scez/month)](https://pepy.tech/project/scez)
37
+
38
+
39
+ ### Description
40
+ There are many tools available for single-cell RNA-seq analysis, but they often require a lot of understanding of the underlying algorithms, reading of documentation, and setting up analysis environments. This takes time and effort, and can be a barrier to entry for many projects. [Single-Cell Best Practices](https://github.com/theislab/single-cell-best-practices) is a great resource for learning about the best practices for single-cell analysis. `scez` aims to provide functionalities for single-cell analysis through definitions of analysis "tasks" and implementation of these "best practices" in a user-friendly way.
41
+
42
+ This is more a personal effort to streamline my own analysis workflows, but I hope it can be useful to others as well.
43
+
31
44
 
32
45
  ### Installation
33
46
  Make sure you have mamba installed in your base environment. If not, install it with:
@@ -36,7 +49,7 @@ conda install mamba -n base -c conda-forge
36
49
  ```
37
50
  Then, create a new conda environment with the provided `environment.yml` file and activate it. This will install all necessary dependencies for scez.
38
51
  ```bash
39
- conda env create -f environment.yml
52
+ conda env create -f https://raw.githubusercontent.com/abearab/scez/main/environment.yml
40
53
 
41
54
  conda activate scez
42
55
  ```
@@ -46,6 +59,7 @@ Finally, install scez with:
46
59
  pip install scez
47
60
  ```
48
61
 
62
+ ___
49
63
  Or, if you want to install the latest version from the repository:
50
64
  ```bash
51
65
  pip install git+https://github.com/abearab/scez.git
@@ -1,11 +1,11 @@
1
- scez/__init__.py,sha256=kmN55oxZUHJfsInsnDWvAtxSNn5KnESir65NGr_ssyo,1356
1
+ scez/__init__.py,sha256=3zXd7gUTFNJK-_l89LYFI-8yqkjt99dYLmZozK6qk0c,1412
2
2
  scez/diffexp.py,sha256=V8qjqpTZVaoAb-iCa3jYmPDmDBtg5AK9OqNzRow6ic0,6770
3
3
  scez/preprocess.py,sha256=3iaxACkmKQjKZdaFBLRAXz1kwkNnhbdnd_gwF8rI4nw,2572
4
4
  scez/representation.py,sha256=IW0pwa_yoKf-2a3lbtxRwLTdCjB2PkS9oN4WGCLwED0,1596
5
5
  scez/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  scez/tests/test_scez.py,sha256=hoBSYB5k1WtF1hY_kyWXw1W7NolBornmTdAng6tDpjw,452
7
7
  scez/utils.py,sha256=lPmt01JILiKoBUhhxZeyhl2CfAzailTp4dIefP4FqGQ,1955
8
- scez-0.1.0.dist-info/LICENSE,sha256=59TS1D5RmGh66RJikXvFoq_ZW9pGirB4zUOUXLfptJM,1071
9
- scez-0.1.0.dist-info/METADATA,sha256=zpvmYCHTzCYTRyK9FfczqE6uagMQJMjv6CVukChrODU,1748
10
- scez-0.1.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
11
- scez-0.1.0.dist-info/RECORD,,
8
+ scez-0.1.1.dist-info/LICENSE,sha256=59TS1D5RmGh66RJikXvFoq_ZW9pGirB4zUOUXLfptJM,1071
9
+ scez-0.1.1.dist-info/METADATA,sha256=RzrXbfCm1W6Nt5s55S54YDb-XWW2WOq7P482DG3tSf4,2930
10
+ scez-0.1.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
11
+ scez-0.1.1.dist-info/RECORD,,
File without changes
File without changes