pycmplot 0.2.7__tar.gz → 0.2.9__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.2.7 → pycmplot-0.2.9}/PKG-INFO +9 -1
- {pycmplot-0.2.7 → pycmplot-0.2.9}/README.md +8 -0
- pycmplot-0.2.9/benchmark/bench_python.py +808 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/benchmark/collect_results.py +85 -23
- pycmplot-0.2.9/benchmark/generate_multi_sumstats.py +230 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/benchmark/generate_sumstats.py +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/__init__.py +1 -1
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/_core.py +30 -5
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/cli.py +9 -1
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/plotting/circular.py +12 -35
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/plotting/linear.py +801 -581
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/plotting/qq.py +46 -38
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot.egg-info/PKG-INFO +9 -1
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot.egg-info/SOURCES.txt +1 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pyproject.toml +1 -1
- {pycmplot-0.2.7 → pycmplot-0.2.9}/setup.cfg +1 -1
- pycmplot-0.2.7/benchmark/bench_python.py +0 -266
- {pycmplot-0.2.7 → pycmplot-0.2.9}/LICENSE +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/__main__.py +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/annotation.py +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/constants.py +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/data/Homo_sapiens.GRCh37.geneinfo.tsv.gz +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/data/Homo_sapiens.GRCh38.geneinfo.tsv.gz +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/data/hg18ToHg38.over.chain.gz +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/data/hg19ToHg38.over.chain.gz +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/io.py +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/liftover.py +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/plotting/__init__.py +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/resources.py +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot/stats.py +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot.egg-info/dependency_links.txt +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot.egg-info/entry_points.txt +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot.egg-info/requires.txt +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/pycmplot.egg-info/top_level.txt +0 -0
- {pycmplot-0.2.7 → pycmplot-0.2.9}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pycmplot
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.9
|
|
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@jh.edu>
|
|
@@ -143,6 +143,14 @@ for gene annotation. Also included are UCSC chain files for coordinate conversio
|
|
|
143
143
|
A potential useful application is **comparative visualization** of results from multiple imputation panels,
|
|
144
144
|
multiple populations, or multiple traits to observe shared genetic architecture.
|
|
145
145
|
|
|
146
|
+
|
|
147
|
+
# Tip
|
|
148
|
+
|
|
149
|
+
For signed non-pvalue statistics such as iHS, use `--signif_threshold` and
|
|
150
|
+
`--suggest_threshold` to specify lines to draw for iHS cutoff above and below zero,
|
|
151
|
+
that is in the positive and negative axes.
|
|
152
|
+
|
|
153
|
+
|
|
146
154
|
Read more in the package documentation page: https://pycmplot.readthedocs.io/en/latest/
|
|
147
155
|
|
|
148
156
|
---
|
|
@@ -104,6 +104,14 @@ for gene annotation. Also included are UCSC chain files for coordinate conversio
|
|
|
104
104
|
A potential useful application is **comparative visualization** of results from multiple imputation panels,
|
|
105
105
|
multiple populations, or multiple traits to observe shared genetic architecture.
|
|
106
106
|
|
|
107
|
+
|
|
108
|
+
# Tip
|
|
109
|
+
|
|
110
|
+
For signed non-pvalue statistics such as iHS, use `--signif_threshold` and
|
|
111
|
+
`--suggest_threshold` to specify lines to draw for iHS cutoff above and below zero,
|
|
112
|
+
that is in the positive and negative axes.
|
|
113
|
+
|
|
114
|
+
|
|
107
115
|
Read more in the package documentation page: https://pycmplot.readthedocs.io/en/latest/
|
|
108
116
|
|
|
109
117
|
---
|