Skip to main content

Visualizing and analyzing KEGG information in Python

Project description

pykegg

Analyze and visualize KEGG information using network approach.

Using biopython, igraph and plotnine, parse the KGML into igraph and easily plot the relevant information contained in KEGG Pathway in Python environment.

import requests_cache
import numpy as np
from PIL import Image
import pykegg
import matplotlib as mpl

## Be sure to cache all the downloaded files to avoid recursive querying
requests_cache.install_cache('pykegg_cache')
g = pykegg.KGML_graph(pid="hsa03460")

## Export as igraph
gra = g.get_graph()
print(gra)

## Overlay to raw image
nds = g.get_nodes()
nds = nds[nds.original_type=="gene"]
nds["lfc"] = np.arange(-2,2,0.01)[0:nds.shape[0]]
cmap_grad = mpl.colors.LinearSegmentedColormap.from_list("cmap_grad", ["yellow","green"])
norm = mpl.colors.Normalize(vmin=min(nds.lfc), vmax=max(nds.lfc))
nds["color"] = [
        mpl.colors.to_hex(cmap_grad(norm(x))) if x is not None else None
        for x in nds.lfc
    ]
Image.fromarray(pykegg.overlay_opencv_image(nds, pid="hsa03460"))

Documentation

https://noriakis.github.io/pykegg-docs

TODO

  • The function for converting identifiers (especially for ENTREZID <-> SYMBOL) without connection to servers, like using genomic-features.
  • Parallel edge support by nudging x and y position
  • Better error handling

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

pykegg-0.1.7.tar.gz (12.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pykegg-0.1.7-py3-none-any.whl (12.1 kB view details)

Uploaded Python 3

File details

Details for the file pykegg-0.1.7.tar.gz.

File metadata

  • Download URL: pykegg-0.1.7.tar.gz
  • Upload date:
  • Size: 12.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.13

File hashes

Hashes for pykegg-0.1.7.tar.gz
Algorithm Hash digest
SHA256 1464cae18ae21b65ff6a48c3a7808129d7d303e6c4b64b038334d82f67c82214
MD5 ae22c0a57cb79754b40907f9327184bc
BLAKE2b-256 e69674493acd8f535745edecc0127efd29c32755b4e15f0425ad14c3ba33694a

See more details on using hashes here.

File details

Details for the file pykegg-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: pykegg-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 12.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.13

File hashes

Hashes for pykegg-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 8068677d66e9a35afc95180050c96ea6428a114610f7defc422fbedd67d998b8
MD5 b7b9936adb3bf8819a62989b867f63d5
BLAKE2b-256 b77f62e08c6bf3cd3439df85651bd14e57ca4010ad68c837d9d8eaab15c8cdde

See more details on using hashes here.

Supported by

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