pylocuszoom 1.1.0__py3-none-any.whl → 1.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.
- pylocuszoom/__init__.py +1 -1
- {pylocuszoom-1.1.0.dist-info → pylocuszoom-1.1.1.dist-info}/METADATA +12 -12
- {pylocuszoom-1.1.0.dist-info → pylocuszoom-1.1.1.dist-info}/RECORD +5 -5
- {pylocuszoom-1.1.0.dist-info → pylocuszoom-1.1.1.dist-info}/WHEEL +0 -0
- {pylocuszoom-1.1.0.dist-info → pylocuszoom-1.1.1.dist-info}/licenses/LICENSE.md +0 -0
pylocuszoom/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pylocuszoom
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.1
|
|
4
4
|
Summary: Publication-ready regional association plots with LD coloring, gene tracks, and recombination overlays
|
|
5
5
|
Project-URL: Homepage, https://github.com/michael-denyer/pylocuszoom
|
|
6
6
|
Project-URL: Documentation, https://github.com/michael-denyer/pylocuszoom#readme
|
|
@@ -53,7 +53,7 @@ Description-Content-Type: text/markdown
|
|
|
53
53
|
[](https://plotly.com/python/)
|
|
54
54
|
[](https://bokeh.org/)
|
|
55
55
|
[](https://pandas.pydata.org/)
|
|
56
|
-
<img src="logo.svg" alt="pyLocusZoom logo" width="120" align="right">
|
|
56
|
+
<img src="https://raw.githubusercontent.com/michael-denyer/pyLocusZoom/main/logo.svg" alt="pyLocusZoom logo" width="120" align="right">
|
|
57
57
|
# pyLocusZoom
|
|
58
58
|
|
|
59
59
|
Designed for publication-ready GWAS visualization with regional association plots, gene tracks, eQTL, PheWAS, fine-mapping, and forest plots.
|
|
@@ -71,7 +71,7 @@ Inspired by [LocusZoom](http://locuszoom.org/) and [locuszoomr](https://github.c
|
|
|
71
71
|
- **SNP labels (matplotlib)**: Automatic labeling of top SNPs by p-value (RS IDs)
|
|
72
72
|
- **Hover tooltips (Plotly and Bokeh)**: Detailed SNP data on hover
|
|
73
73
|
|
|
74
|
-

|
|
74
|
+

|
|
75
75
|
*Regional association plot with LD coloring, gene/exon track, recombination rate overlay (blue line), and top SNP labels.*
|
|
76
76
|
|
|
77
77
|
2. **Stacked plots**: Compare multiple GWAS/phenotypes vertically
|
|
@@ -254,7 +254,7 @@ fig = plotter.plot_stacked(
|
|
|
254
254
|
)
|
|
255
255
|
```
|
|
256
256
|
|
|
257
|
-

|
|
257
|
+

|
|
258
258
|
*Stacked plot comparing two phenotypes with LD coloring and shared gene track.*
|
|
259
259
|
|
|
260
260
|
## eQTL Overlay
|
|
@@ -283,7 +283,7 @@ fig = plotter.plot_stacked(
|
|
|
283
283
|
)
|
|
284
284
|
```
|
|
285
285
|
|
|
286
|
-

|
|
286
|
+

|
|
287
287
|
*eQTL overlay with effect direction (up/down triangles) and magnitude binning.*
|
|
288
288
|
|
|
289
289
|
## Fine-mapping Visualization
|
|
@@ -312,7 +312,7 @@ fig = plotter.plot_stacked(
|
|
|
312
312
|
)
|
|
313
313
|
```
|
|
314
314
|
|
|
315
|
-

|
|
315
|
+

|
|
316
316
|
*Fine-mapping visualization with PIP line and credible set coloring (CS1/CS2).*
|
|
317
317
|
|
|
318
318
|
## PheWAS Plots
|
|
@@ -333,7 +333,7 @@ fig = plotter.plot_phewas(
|
|
|
333
333
|
)
|
|
334
334
|
```
|
|
335
335
|
|
|
336
|
-

|
|
336
|
+

|
|
337
337
|
*PheWAS plot showing associations across phenotype categories with significance threshold.*
|
|
338
338
|
|
|
339
339
|
## Forest Plots
|
|
@@ -356,7 +356,7 @@ fig = plotter.plot_forest(
|
|
|
356
356
|
)
|
|
357
357
|
```
|
|
358
358
|
|
|
359
|
-

|
|
359
|
+

|
|
360
360
|
*Forest plot with effect sizes, confidence intervals, and weight-proportional markers.*
|
|
361
361
|
|
|
362
362
|
## Manhattan Plots
|
|
@@ -379,7 +379,7 @@ fig = plotter.plot_manhattan(
|
|
|
379
379
|
fig.savefig("manhattan.png", dpi=150)
|
|
380
380
|
```
|
|
381
381
|
|
|
382
|
-

|
|
382
|
+

|
|
383
383
|
*Manhattan plot showing genome-wide associations with chromosome coloring and significance threshold.*
|
|
384
384
|
|
|
385
385
|
Categorical Manhattan plots (PheWAS-style) are also supported:
|
|
@@ -411,7 +411,7 @@ fig = plotter.plot_qq(
|
|
|
411
411
|
fig.savefig("qq_plot.png", dpi=150)
|
|
412
412
|
```
|
|
413
413
|
|
|
414
|
-

|
|
414
|
+

|
|
415
415
|
*QQ plot with 95% confidence band and genomic inflation factor (λ).*
|
|
416
416
|
|
|
417
417
|
## Stacked Manhattan Plots
|
|
@@ -436,7 +436,7 @@ fig = plotter.plot_manhattan_stacked(
|
|
|
436
436
|
fig.savefig("manhattan_stacked.png", dpi=150)
|
|
437
437
|
```
|
|
438
438
|
|
|
439
|
-

|
|
439
|
+

|
|
440
440
|
*Stacked Manhattan plots comparing three GWAS studies with shared chromosome axis.*
|
|
441
441
|
|
|
442
442
|
## Manhattan and QQ Side-by-Side
|
|
@@ -462,7 +462,7 @@ fig = plotter.plot_manhattan_qq(
|
|
|
462
462
|
fig.savefig("manhattan_qq.png", dpi=150)
|
|
463
463
|
```
|
|
464
464
|
|
|
465
|
-

|
|
465
|
+

|
|
466
466
|
*Combined Manhattan and QQ plot showing genome-wide associations and p-value distribution.*
|
|
467
467
|
|
|
468
468
|
## PySpark Support
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pylocuszoom/__init__.py,sha256=
|
|
1
|
+
pylocuszoom/__init__.py,sha256=vhYxzDWG31iCl-VlL-yxsnv4XB8drMH00JtAoQVtpuc,6108
|
|
2
2
|
pylocuszoom/_plotter_utils.py,sha256=ELdSOcKk2KvOo_AxEWHeutmmUS4zZMaDMmQfpQUWaF0,1541
|
|
3
3
|
pylocuszoom/colors.py,sha256=B28rfhWwGZ-e6Q-F43iXxC6NZpjUo0yWk4S_-vp9ZvU,7686
|
|
4
4
|
pylocuszoom/config.py,sha256=qjIEodI-RY71RVyQ5QmE6WXcPXU4Re_xEWiDlkEww3g,13266
|
|
@@ -30,7 +30,7 @@ pylocuszoom/backends/hover.py,sha256=Hjm_jcxJL8dDxO_Ye7jeWAUcHKlbH6oO8ZfGJ2MzIFM
|
|
|
30
30
|
pylocuszoom/backends/matplotlib_backend.py,sha256=9WAFLWcclj2-4WKi6bE6IPJfQ_HNoIekOE45ibBGPa0,22824
|
|
31
31
|
pylocuszoom/backends/plotly_backend.py,sha256=VDEZMdP7nOeFYLli-YOc_2DG00ZA6VVRNUcvT5PU0HM,39084
|
|
32
32
|
pylocuszoom/reference_data/__init__.py,sha256=qqHqAUt1jebGlCN3CjqW3Z-_coHVNo5K3a3bb9o83hA,109
|
|
33
|
-
pylocuszoom-1.1.
|
|
34
|
-
pylocuszoom-1.1.
|
|
35
|
-
pylocuszoom-1.1.
|
|
36
|
-
pylocuszoom-1.1.
|
|
33
|
+
pylocuszoom-1.1.1.dist-info/METADATA,sha256=jbJjhG60wtSjUWHU2G2t-jYzphdsuhNjC919jo_pSfg,22009
|
|
34
|
+
pylocuszoom-1.1.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
35
|
+
pylocuszoom-1.1.1.dist-info/licenses/LICENSE.md,sha256=U2y_hv8RcN5lECA3uK88irU3ODUE1TDAPictcmnP0Q4,698
|
|
36
|
+
pylocuszoom-1.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|