pycmplot 0.1.0__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.
- {pycmplot-0.1.0 → pycmplot-0.1.1}/PKG-INFO +8 -4
- {pycmplot-0.1.0 → pycmplot-0.1.1}/README.md +7 -3
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot.egg-info/PKG-INFO +8 -4
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pyproject.toml +1 -1
- {pycmplot-0.1.0 → pycmplot-0.1.1}/setup.cfg +1 -1
- {pycmplot-0.1.0 → pycmplot-0.1.1}/LICENSE +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/__init__.py +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/_core.py +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/annotation.py +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/cli.py +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/constants.py +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/data/Homo_sapiens.GRCh37.geneinfo.tsv.gz +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/data/Homo_sapiens.GRCh38.geneinfo.tsv.gz +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/data/hg19ToHg38.over.chain +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/io.py +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/liftover.py +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/plotting/circular.py +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/plotting/linear.py +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/resources.py +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot/stats.py +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot.egg-info/SOURCES.txt +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot.egg-info/dependency_links.txt +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot.egg-info/entry_points.txt +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot.egg-info/requires.txt +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/pycmplot.egg-info/top_level.txt +0 -0
- {pycmplot-0.1.0 → pycmplot-0.1.1}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pycmplot
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Multi-track circular and linear Manhattan plot generation for GWAS summary statistics
|
|
5
5
|
Author: Kevin Esoh
|
|
6
6
|
Author-email: Kevin Esoh <kesohku1@jhmi.edu>
|
|
@@ -46,13 +46,17 @@ pip install pycmplot
|
|
|
46
46
|
|
|
47
47
|
### From source code
|
|
48
48
|
```bash
|
|
49
|
-
wget
|
|
49
|
+
wget https://files.pythonhosted.org/packages/a2/c7/c21312ec5e5cfe22d11535a5fba5b63a11337659160243b73e1728eec14d/pycmplot-0.1.0.tar.gz
|
|
50
50
|
|
|
51
|
-
tar zxvf
|
|
51
|
+
tar zxvf pycmplot-0.1.0.tar.gz
|
|
52
52
|
|
|
53
|
-
cd pycmplot-
|
|
53
|
+
cd pycmplot-0.1.0
|
|
54
54
|
|
|
55
55
|
pip install -e .
|
|
56
|
+
|
|
57
|
+
# or
|
|
58
|
+
|
|
59
|
+
pip install -e . --break-system-packages
|
|
56
60
|
```
|
|
57
61
|
|
|
58
62
|
|
|
@@ -22,13 +22,17 @@ pip install pycmplot
|
|
|
22
22
|
|
|
23
23
|
### From source code
|
|
24
24
|
```bash
|
|
25
|
-
wget
|
|
25
|
+
wget https://files.pythonhosted.org/packages/a2/c7/c21312ec5e5cfe22d11535a5fba5b63a11337659160243b73e1728eec14d/pycmplot-0.1.0.tar.gz
|
|
26
26
|
|
|
27
|
-
tar zxvf
|
|
27
|
+
tar zxvf pycmplot-0.1.0.tar.gz
|
|
28
28
|
|
|
29
|
-
cd pycmplot-
|
|
29
|
+
cd pycmplot-0.1.0
|
|
30
30
|
|
|
31
31
|
pip install -e .
|
|
32
|
+
|
|
33
|
+
# or
|
|
34
|
+
|
|
35
|
+
pip install -e . --break-system-packages
|
|
32
36
|
```
|
|
33
37
|
|
|
34
38
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pycmplot
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Multi-track circular and linear Manhattan plot generation for GWAS summary statistics
|
|
5
5
|
Author: Kevin Esoh
|
|
6
6
|
Author-email: Kevin Esoh <kesohku1@jhmi.edu>
|
|
@@ -46,13 +46,17 @@ pip install pycmplot
|
|
|
46
46
|
|
|
47
47
|
### From source code
|
|
48
48
|
```bash
|
|
49
|
-
wget
|
|
49
|
+
wget https://files.pythonhosted.org/packages/a2/c7/c21312ec5e5cfe22d11535a5fba5b63a11337659160243b73e1728eec14d/pycmplot-0.1.0.tar.gz
|
|
50
50
|
|
|
51
|
-
tar zxvf
|
|
51
|
+
tar zxvf pycmplot-0.1.0.tar.gz
|
|
52
52
|
|
|
53
|
-
cd pycmplot-
|
|
53
|
+
cd pycmplot-0.1.0
|
|
54
54
|
|
|
55
55
|
pip install -e .
|
|
56
|
+
|
|
57
|
+
# or
|
|
58
|
+
|
|
59
|
+
pip install -e . --break-system-packages
|
|
56
60
|
```
|
|
57
61
|
|
|
58
62
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "pycmplot"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "Multi-track circular and linear Manhattan plot generation for GWAS summary statistics"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
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
|