Skip to main content

'Gene visualization package for dataframe objects generated with PyRanges.'

Project description

pyranges_plot

Gene visualization package for dataframe objects generated with PyRanges.

Overview

The goal is getting a plot displaying a series of genes contained in a dataframe from a PyRanges object. It displays the genes in its corresponding chromosome subplot. The user can choose whether the plot is based on Matplotlib or Plotly by setting the engine. The plot will not contain all the genes in the dataframe, by default it shows 25 genes but this number can be customized too. It is worth noting that the order of the genes will be conserved.

Pyranges plot offers a wide versatility for coloring. The data feature (column) according to which the genes will be colored is by default the gene ID, but this "color column" can be selected manually. Color specifications can be left as the default colormap or be provided as dictionaries, lists and color objects from either Matplotlib or Plotly regardless of the chosen engine. When a colormap or list of colors is specified, the colors assigned to the genes will iterate over the provided ones following the color column pattern. In the case of concrete color instructions such as dictionary, the genes will be colored according to it while the non-specified ones will be colored in black(??).

Installation

PyRanges-Plot can be installed using pip:

pip install pyranges-plot

Examples

Next we will test pyranges_plot visualization options, using a PyRanges object generated from a dictionary.

import pyranges as pr
import pyranges_plot as prplot

p = pr.from_dict({"Chromosome": [1, 1, 2, 2, 2, 2, 2, 3],
             	"Strand": ["+", "+", "-", "-", "+", "+", "+", "+"],
             	"Start": [1, 40, 10, 70, 75, 110, 150, 140],
             	"End": [11, 60, 25, 80, 100, 115, 180, 152],
             	"transcript_id":["t1", "t1", "t2", "t2", "t3", "t3", "t3", "t4"] })
p
+--------------+--------------+-----------+-----------+-----------------+
|   Chromosome | Strand       |     Start |       End | transcript_id   |
|   (category) | (category)   |   (int64) |   (int64) | (object)        |
|--------------+--------------+-----------+-----------+-----------------|
|            1 | +            |         1 |        11 | t1              |
|            1 | +            |        40 |        60 | t1              |
|            2 | +            |        75 |       100 | t3              |
|            2 | +            |       110 |       115 | t3              |
|            2 | +            |       150 |       180 | t3              |
|            2 | -            |        10 |        25 | t2              |
|            2 | -            |        70 |        80 | t2              |
|            3 | +            |       140 |       152 | t4              |
+--------------+--------------+-----------+-----------+-----------------+
Stranded PyRanges object has 8 rows and 5 columns from 3 chromosomes.
For printing, the PyRanges was sorted on Chromosome and Strand.

The generated data is a stranded PyRanges object containing 4 genes in 3 chromosomes as shown above. Having this example data in the variable p we are able to start exploring pyranges_plot options. We can get a plot in a single line:

prplot.plot_exons(p, engine="plt", id_column="transcript_id")

The output is an interactive Matplotlib plot. To obtain it we just need to provide the data, the engine and the name of the id column. However the engine can be set previously so there is no need to specify it anymore while plotting:

# Use 'plotly' or 'ply' for Plotly plots and 'matplotlib' or 'plt' for Matplotlib plots
prplot.set_engine('plotly')

Since the data has only 4 genes all of them are plotted, but the function has a default limit of 25 , so in a case where the data contains more genes it will only show the top 25, unless the max_ngenes parameter is specified. For example we can set the maximum number of genes as 2. Note that in the case of plotting more than 25 a warning about the plot’s integrity will appear.

prplot.plot_exons(p, id_column="transcript_id", max_ngenes=2)

Now the plot is based in Plotly because we set it as the engine, though it looks the same as the Matplotlib one. Also, both libraries offer interactive zoom options. For Matplotlib…

and for Plotly.

Another pyranges_plot functionality is allowing to define the coordinate of the plots through the custom_coords parameter. The default limits show some space between the first and last plotted exons of each chromosome, but these can be customized. The user can decide to change all or some of the coordinate limits leaving the rest as default if desired. The limits should be provided as a dictionary, where the keys are the data’s chromosome names in string format, and the values are either None or a tuple indicating the limits. When a chromosome is not specified in the dictionary or it is assigned None the coordinates will appear as default.

prplot.plot_exons(
    p,
    id_column="transcript_id",
    custom_coords={"1": (None, 100), "2": (60, 200), "3": None}
)

We can try to color the genes according to the strand column instead of the ID (default). For that the color_column parameter should be used.

prplot.plot_exons(p, id_column="transcript_id", color_column="Strand")

This way we see the "+" strand genes in one color and the "-" in another color. Additionally these colors can be customized through the colormap parameter. For this case we can specify it as a dictionary to see it more clearly in the following way:

prplot.plot_exons(
    p,
    id_column="transcript_id",
    color_column="Strand",
    colormap={"+": "green", "-": "red"}
)

The parameter colormap is very versatile because it accepts dictionaries for specific coloring, but also Matplotlib and Plotly color objects such as colormaps (or even just the string name of these objects) as well as lists of colors. For example we can use the Dark2 Matplotlib colormap, even if the plot is based on Plotly:

prplot.plot_exons(p, id_column="transcript_id", colormap="Dark2")

Lastly, some features of the plot appearance can also be customized. The way to change the default features is using the set_default function. The background, plot border or title default colors can be checked and customized in the following way:

# Check the default values
prplot.get_default('plot_background')

# Change the default values
prplot.set_default('plot_background', 'black')
prplot.set_default('plot_border', 'lightblue')
prplot.set_default('title_dict_ply.color', 'magenta')

# Make the customized plot
prplot.plot_exons(p, id_column="transcript_id")

Coming soon

  • Bases will be displayed along coordinates
  • Colorblind friendly

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyranges_plot-0.0.5.tar.gz (15.6 kB view details)

Uploaded Source

File details

Details for the file pyranges_plot-0.0.5.tar.gz.

File metadata

  • Download URL: pyranges_plot-0.0.5.tar.gz
  • Upload date:
  • Size: 15.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for pyranges_plot-0.0.5.tar.gz
Algorithm Hash digest
SHA256 a536b6d3ee02aaae550f48c6314a9c417897a48a8d833f742a039bd748945598
MD5 0e61d6b5b8ba522cdf7a3e5c32cff4a2
BLAKE2b-256 1e9b8edeb3246307af379b02f2831881672c71c132cc6fc24912b9d304250d79

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page