PlotNado

PlotNado logo

PlotNado is a Python library for clean, publication-ready genome browser figures with a fast, chainable API.

Install

pip install plotnado

Preferred workflow style

from plotnado import GenomicFigure

gf = GenomicFigure(theme="publication")
gf.autocolor()
gf.scalebar()
gf.genes("hg38", display="expanded", minimum_gene_length=1e5)

gf.bigwig("signal_1.bw", title="H3K4me1", color_group="H3K4me1", style="std")
gf.bigwig("signal_2.bw", title="H3K4me3", color_group="H3K4me3", style="std")

gf.axis()
gf.plot_gene("GNAQ")

Read by task