pycmplot 0.1.4__tar.gz → 0.1.5__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.4/pycmplot.egg-info → pycmplot-0.1.5}/PKG-INFO +8 -8
- {pycmplot-0.1.4 → pycmplot-0.1.5}/README.md +7 -7
- {pycmplot-0.1.4 → pycmplot-0.1.5/pycmplot.egg-info}/PKG-INFO +8 -8
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pyproject.toml +1 -1
- {pycmplot-0.1.4 → pycmplot-0.1.5}/setup.cfg +1 -1
- {pycmplot-0.1.4 → pycmplot-0.1.5}/LICENSE +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/LICENSE.mit +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/__init__.py +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/_core.py +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/annotation.py +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/cli.py +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/constants.py +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/data/Homo_sapiens.GRCh37.geneinfo.tsv.gz +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/data/Homo_sapiens.GRCh38.geneinfo.tsv.gz +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/data/hg19ToHg38.over.chain +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/io.py +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/liftover.py +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/plotting/circular.py +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/plotting/linear.py +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/resources.py +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot/stats.py +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot.egg-info/SOURCES.txt +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot.egg-info/dependency_links.txt +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot.egg-info/entry_points.txt +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot.egg-info/requires.txt +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/pycmplot.egg-info/top_level.txt +0 -0
- {pycmplot-0.1.4 → pycmplot-0.1.5}/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.5
|
|
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>
|
|
@@ -66,16 +66,16 @@ command-line or python API:
|
|
|
66
66
|
Candidate names for each of the columns is shown below.
|
|
67
67
|
|
|
68
68
|
```python
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
69
|
+
# Resolve column names
|
|
70
|
+
chr_candidates = [chrom, 'CHR', 'CHROM', 'Chromosome', '#CHROM', '#CHR', 'Chrom', 'chrom', 'chr', 'chromosome', '#chr', '#chrom']
|
|
71
|
+
pos_candidates = [pos, 'BP', 'POS', 'bp', 'pos', 'Basepair']
|
|
72
|
+
snp_candidates = [snp, 'SNP', 'RSID', 'rsID', 'MarkerName', 'MarkerID', 'Predictor', 'Marker', 'SNPID', 'ID']
|
|
73
|
+
pvl_candidates = [pcol, 'P', 'P-value', 'Wald_P', 'pvalue', 'p_val', 'pval']
|
|
74
|
+
bld_candidates = [build, 'BUILD', 'Genome', 'Genome_Build', 'Genome-build']
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
Since GWAS summary stats files can be very large, to improve speed and memory efficiency, it is
|
|
78
|
-
highly recommended to use `-tp, --trim_pval` with a value to exclude variants with p-value above a
|
|
78
|
+
**highly recommended** to use `-tp, --trim_pval` with a value to exclude variants with p-value above a
|
|
79
79
|
certain threshold, e.g. `0.01 (1e-2)` or `0.001 (1e-3)`.
|
|
80
80
|
|
|
81
81
|
---
|
|
@@ -41,16 +41,16 @@ command-line or python API:
|
|
|
41
41
|
Candidate names for each of the columns is shown below.
|
|
42
42
|
|
|
43
43
|
```python
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
44
|
+
# Resolve column names
|
|
45
|
+
chr_candidates = [chrom, 'CHR', 'CHROM', 'Chromosome', '#CHROM', '#CHR', 'Chrom', 'chrom', 'chr', 'chromosome', '#chr', '#chrom']
|
|
46
|
+
pos_candidates = [pos, 'BP', 'POS', 'bp', 'pos', 'Basepair']
|
|
47
|
+
snp_candidates = [snp, 'SNP', 'RSID', 'rsID', 'MarkerName', 'MarkerID', 'Predictor', 'Marker', 'SNPID', 'ID']
|
|
48
|
+
pvl_candidates = [pcol, 'P', 'P-value', 'Wald_P', 'pvalue', 'p_val', 'pval']
|
|
49
|
+
bld_candidates = [build, 'BUILD', 'Genome', 'Genome_Build', 'Genome-build']
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
Since GWAS summary stats files can be very large, to improve speed and memory efficiency, it is
|
|
53
|
-
highly recommended to use `-tp, --trim_pval` with a value to exclude variants with p-value above a
|
|
53
|
+
**highly recommended** to use `-tp, --trim_pval` with a value to exclude variants with p-value above a
|
|
54
54
|
certain threshold, e.g. `0.01 (1e-2)` or `0.001 (1e-3)`.
|
|
55
55
|
|
|
56
56
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pycmplot
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
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>
|
|
@@ -66,16 +66,16 @@ command-line or python API:
|
|
|
66
66
|
Candidate names for each of the columns is shown below.
|
|
67
67
|
|
|
68
68
|
```python
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
69
|
+
# Resolve column names
|
|
70
|
+
chr_candidates = [chrom, 'CHR', 'CHROM', 'Chromosome', '#CHROM', '#CHR', 'Chrom', 'chrom', 'chr', 'chromosome', '#chr', '#chrom']
|
|
71
|
+
pos_candidates = [pos, 'BP', 'POS', 'bp', 'pos', 'Basepair']
|
|
72
|
+
snp_candidates = [snp, 'SNP', 'RSID', 'rsID', 'MarkerName', 'MarkerID', 'Predictor', 'Marker', 'SNPID', 'ID']
|
|
73
|
+
pvl_candidates = [pcol, 'P', 'P-value', 'Wald_P', 'pvalue', 'p_val', 'pval']
|
|
74
|
+
bld_candidates = [build, 'BUILD', 'Genome', 'Genome_Build', 'Genome-build']
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
Since GWAS summary stats files can be very large, to improve speed and memory efficiency, it is
|
|
78
|
-
highly recommended to use `-tp, --trim_pval` with a value to exclude variants with p-value above a
|
|
78
|
+
**highly recommended** to use `-tp, --trim_pval` with a value to exclude variants with p-value above a
|
|
79
79
|
certain threshold, e.g. `0.01 (1e-2)` or `0.001 (1e-3)`.
|
|
80
80
|
|
|
81
81
|
---
|
|
@@ -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.5"
|
|
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
|
|
File without changes
|