-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
31 lines (27 loc) · 858 Bytes
/
__init__.py
File metadata and controls
31 lines (27 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""
pycmplot.plotting
=================
Plotting sub-package for pycmplot. Exposes the three public entry points
used by the CLI and by downstream scripts:
* :func:`plot_linear` — multi-track stacked linear Manhattan plot.
* :func:`plot_circular` — Circos-style circular Manhattan plot.
* :func:`plot_qq_combined`, :func:`plot_qq_separate`,
:func:`plot_qq_overlay`, :func:`plot_qq_single` — QQ plotting helpers.
"""
from pycmplot.plotting.linear import plot_linear
from pycmplot.plotting.circular import plot_circular, compute_track_radii_dict
from pycmplot.plotting.qq import (
plot_qq_single,
plot_qq_combined,
plot_qq_separate,
plot_qq_overlay,
)
__all__ = [
"plot_linear",
"plot_circular",
"compute_track_radii_dict",
"plot_qq_single",
"plot_qq_combined",
"plot_qq_separate",
"plot_qq_overlay",
]