scez 0.0.1__tar.gz → 0.1.1__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.

Potentially problematic release.


This version of scez might be problematic. Click here for more details.

scez-0.1.1/PKG-INFO ADDED
@@ -0,0 +1,67 @@
1
+ Metadata-Version: 2.1
2
+ Name: scez
3
+ Version: 0.1.1
4
+ Summary: Single Cell Analysis, Easy Mode!
5
+ License: MIT
6
+ Author: Abe Arab
7
+ Author-email: abarbiology@gmail.com
8
+ Requires-Python: >=3.9,<4.0
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Requires-Dist: adjustText (>=0.7.3,<0.8.0)
16
+ Requires-Dist: adpbulk (>=0.1.4,<0.2.0)
17
+ Requires-Dist: anndata (>=0.8.0,<0.9.0)
18
+ Requires-Dist: blitzgsea (>=1.3.0,<2.0.0)
19
+ Requires-Dist: bottleneck (>=1.3.6,<2.0.0)
20
+ Requires-Dist: matplotlib (>=3.7,<4.0)
21
+ Requires-Dist: numpy (>=1.26.0,<2.0.0)
22
+ Requires-Dist: pandas (>=2.1.4,<3.0.0)
23
+ Requires-Dist: pydeseq2 (>=0.4.0,<0.5.0)
24
+ Requires-Dist: pytdc (>=1.0.0,<2.0.0)
25
+ Requires-Dist: scanpy (>=1.9.6,<2.0.0)
26
+ Requires-Dist: seaborn (>=0.12.2,<0.13.0)
27
+ Requires-Dist: tomli
28
+ Requires-Dist: tqdm
29
+ Project-URL: Source, https://github.com/abearab/scez
30
+ Description-Content-Type: text/markdown
31
+
32
+ ## scez – single cell, easy mode
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
+
44
+
45
+ ### Installation
46
+ Make sure you have mamba installed in your base environment. If not, install it with:
47
+ ```bash
48
+ conda install mamba -n base -c conda-forge
49
+ ```
50
+ Then, create a new conda environment with the provided `environment.yml` file and activate it. This will install all necessary dependencies for scez.
51
+ ```bash
52
+ conda env create -f https://raw.githubusercontent.com/abearab/scez/main/environment.yml
53
+
54
+ conda activate scez
55
+ ```
56
+ Finally, install scez with:
57
+
58
+ ```bash
59
+ pip install scez
60
+ ```
61
+
62
+ ___
63
+ Or, if you want to install the latest version from the repository:
64
+ ```bash
65
+ pip install git+https://github.com/abearab/scez.git
66
+ ```
67
+
scez-0.1.1/README.md ADDED
@@ -0,0 +1,35 @@
1
+ ## scez – single cell, easy mode
2
+ [![package](https://github.com/abearab/scez/actions/workflows/main.yml/badge.svg)](https://github.com/abearab/scez/actions/workflows/main.yml)
3
+ [![PyPI version](https://badge.fury.io/py/scez.svg)](https://badge.fury.io/py/scez)
4
+ [![Downloads](https://static.pepy.tech/badge/scez)](https://pepy.tech/project/scez)
5
+ [![Downloads](https://static.pepy.tech/badge/scez/month)](https://pepy.tech/project/scez)
6
+
7
+
8
+ ### Description
9
+ 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.
10
+
11
+ This is more a personal effort to streamline my own analysis workflows, but I hope it can be useful to others as well.
12
+
13
+
14
+ ### Installation
15
+ Make sure you have mamba installed in your base environment. If not, install it with:
16
+ ```bash
17
+ conda install mamba -n base -c conda-forge
18
+ ```
19
+ Then, create a new conda environment with the provided `environment.yml` file and activate it. This will install all necessary dependencies for scez.
20
+ ```bash
21
+ conda env create -f https://raw.githubusercontent.com/abearab/scez/main/environment.yml
22
+
23
+ conda activate scez
24
+ ```
25
+ Finally, install scez with:
26
+
27
+ ```bash
28
+ pip install scez
29
+ ```
30
+
31
+ ___
32
+ Or, if you want to install the latest version from the repository:
33
+ ```bash
34
+ pip install git+https://github.com/abearab/scez.git
35
+ ```
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "scez"
3
- version = "0.0.1"
3
+ version = "0.1.1"
4
4
  authors = [
5
5
  "Abe Arab <abarbiology@gmail.com>"
6
6
  ]
@@ -17,24 +17,23 @@ packages = [
17
17
  [tool.poetry.urls]
18
18
  Source = "https://github.com/abearab/scez"
19
19
 
20
- # [tool.poetry.dependencies]
21
- # dependencies = [
22
- # "anndata>=0.7.4",
23
- # "numpy>=1.17.0",
24
- # "pandas>=0.21,<2.0",
25
- # "matplotlib<3.7",
26
- # "seaborn==0.12.2",
27
- # "scvi-tools",
28
- # "scar",
29
- # "scanpy",
30
- # "adjustText",
31
- # "adpbulk",
32
- # "pydeseq2",
33
- # "pytdc",
34
- # "blitzgsea",
35
- # "tqdm",
36
- # "pytest"
37
- # ]
20
+ [tool.poetry.dependencies]
21
+ python = "^3.9 <4.0"
22
+ numpy = "^1.26.0"
23
+ pandas = "^2.1.4 <3.0.0"
24
+ bottleneck = "^1.3.6"
25
+ tqdm = "*"
26
+ tomli = "*"
27
+ matplotlib = "^3.7"
28
+ seaborn = "^0.12.2"
29
+ adjustText = "^0.7.3"
30
+ scanpy = "^1.9.6"
31
+ anndata = "^0.8.0"
32
+ adpbulk = "^0.1.4"
33
+ pydeseq2 = "^0.4.0"
34
+ pytdc = "^1.0.0"
35
+ blitzgsea = "^1.3.0"
36
+
38
37
 
39
38
  [tool.poetry.group.test.dependencies]
40
39
  pytest = "*"
@@ -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
 
scez-0.0.1/PKG-INFO DELETED
@@ -1,48 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: scez
3
- Version: 0.0.1
4
- Summary: Single Cell Analysis, Easy Mode!
5
- License: MIT
6
- Author: Abe Arab
7
- Author-email: abarbiology@gmail.com
8
- Classifier: License :: OSI Approved :: MIT License
9
- Classifier: Programming Language :: Python :: 2
10
- Classifier: Programming Language :: Python :: 2.7
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.4
13
- Classifier: Programming Language :: Python :: 3.5
14
- Classifier: Programming Language :: Python :: 3.6
15
- Classifier: Programming Language :: Python :: 3.7
16
- Classifier: Programming Language :: Python :: 3.8
17
- Classifier: Programming Language :: Python :: 3.9
18
- Classifier: Programming Language :: Python :: 3.10
19
- Classifier: Programming Language :: Python :: 3.11
20
- Classifier: Programming Language :: Python :: 3.12
21
- Project-URL: Source, https://github.com/abearab/scez
22
- Description-Content-Type: text/markdown
23
-
24
- ## scez – single cell, easy mode
25
- [![package](https://github.com/abearab/scez/actions/workflows/main.yml/badge.svg)](https://github.com/abearab/scez/actions/workflows/main.yml)
26
-
27
- ### Installation
28
- Make sure you have mamba installed in your base environment. If not, install it with:
29
- ```bash
30
- conda install mamba -n base -c conda-forge
31
- ```
32
- Then, create a new conda environment with the provided `environment.yml` file and activate it. This will install all necessary dependencies for scez.
33
- ```bash
34
- conda env create -f environment.yml
35
-
36
- conda activate scez
37
- ```
38
- Finally, install scez with:
39
-
40
- ```bash
41
- pip install scez
42
- ```
43
-
44
- Or, if you want to install the latest version from the repository:
45
- ```bash
46
- pip install git+https://github.com/abearab/scez.git
47
- ```
48
-
scez-0.0.1/README.md DELETED
@@ -1,24 +0,0 @@
1
- ## scez – single cell, easy mode
2
- [![package](https://github.com/abearab/scez/actions/workflows/main.yml/badge.svg)](https://github.com/abearab/scez/actions/workflows/main.yml)
3
-
4
- ### Installation
5
- Make sure you have mamba installed in your base environment. If not, install it with:
6
- ```bash
7
- conda install mamba -n base -c conda-forge
8
- ```
9
- Then, create a new conda environment with the provided `environment.yml` file and activate it. This will install all necessary dependencies for scez.
10
- ```bash
11
- conda env create -f environment.yml
12
-
13
- conda activate scez
14
- ```
15
- Finally, install scez with:
16
-
17
- ```bash
18
- pip install scez
19
- ```
20
-
21
- Or, if you want to install the latest version from the repository:
22
- ```bash
23
- pip install git+https://github.com/abearab/scez.git
24
- ```
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes