Parsing, validation, and data exchange of BEL graphs
Project description
PyBEL is a Python package for parsing and handling biological networks encoded in the Biological Expression Language (BEL). It also facilitates data interchange between common formats and databases such as NetworkX, JSON, CSV, SIF, Cytoscape, CX, NDEx, SQL, and Neo4J.
Its companion package, PyBEL Tools, contains a suite of functions and workflows for analyzing the resulting biological networks.
Citation
If you use PyBEL in your work, we ask that you please cite:
Hoyt et al., 2017. PyBEL: a computational framework for Biological Expression Language. Bioinformatics, btx660, https://doi.org/10.1093/bioinformatics/btx660
Getting Started
In this example, the Selventa Small Corpus is loaded and visualized in a Jupyter Notebook.
>>> import pybel, pybel_tools
>>> graph = pybel.from_url('http://resources.openbel.org/belframework/20150611/knowledge/small_corpus.bel')
>>> graph.number_of_nodes() # Will be smaller than expected because we have the most strict settings enabled
1207
>>> pybel_tools.visualization.to_jupyter(graph)
More examples can be found in the documentation and in the PyBEL Notebooks repository.
PyBEL also installs a command line interface with the command pybel
for simple utilities such as data
conversion. In this example, a BEL Script is exported to GraphML for viewing in Cytoscape.
$ pybel convert --path ~/Desktop/example.bel --graphml ~/Desktop/example.graphml
In Cytoscape, open with Import > Network > From File
.
Installation
PyBEL can be installed easily from PyPI with the following code in your favorite terminal:
$ python3 -m pip install pybel
or from the latest code on GitHub with:
$ python3 -m pip install git+https://github.com/pybel/pybel.git@develop
See the installation documentation for more advanced
instructions. Also, check the change log at CHANGELOG.rst
.
Contributing
Contributions, whether filing an issue, making a pull request, or forking, are appreciated. See
CONTRIBUTING.rst
for more information on getting involved. Please add your name to AUTHORS.rst
!
Acknowledgements
This package was originally developed as part of the master’s work of Charles Tapley Hoyt at Fraunhofer SCAI with partial support from the IMI projects: AETIONOMY and PHAGO.
This software is proudly built with Paul McGuire’s PyParsing package.
Scott Colby designed our logo and provided sage advice
Christian Ebeling for supervision and consultation
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for PyBEL-0.10.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6905b10f2dae6123ad7b8face4ece7932ac2e90acbbc9e06ca88a78792ea1358 |
|
MD5 | f9384cf3b5dbd34b28a9b0f026a24337 |
|
BLAKE2b-256 | 51767512866f0d52d210ac1479255f04548d5f900b943ef715ccd1172066b02d |