Metadata-Version: 2.1
Name: conib
Version: 0.0.8
Summary: Curation of Neurodegeneration in BEL (CONIB)
Home-page: https://github.com/pharmacome/conib
Author: Charles Tapley Hoyt
Author-email: cthoyt@gmail.com
Maintainer: Charles Tapley Hoyt
Maintainer-email: cthoyt@gmail.com
License: MIT License
Download-URL: https://github.com/pharmacome/conib/releases
Project-URL: Bug Tracker, https://github.com/pharmacome/conib/issues
Project-URL: Source Code, https://github.com/pharmacome/conib
Keywords: Biological Expression Language,BEL,Domain Specific Language,DSL,Systems biology,Networks biology,Drug repositioning
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Scientific/Engineering :: Chemistry
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pybel (>=0.15.0)

<p align="center">
  <img src="https://docs.google.com/drawings/d/e/2PACX-1vSYe8SA8J1ulLRFqFjX2bne_L-5fxb-yHFcj1B2JYLksJS90qz8y2swPZPNSrw9Zj3tljrZikb5KWOg/pub?w=150&amp;h=150" />
</p>

<h1 align="center">
  Curation of Neurodegeneration in BEL (CONIB)
  <a href="https://travis-ci.com/pharmacome/conib">
    <img src="https://travis-ci.com/pharmacome/conib.svg?branch=master"
         alt="Travis CI">
  </a>
  <a href="https://zenodo.org/badge/latestdoi/159803376">
  	<img src="https://zenodo.org/badge/159803376.svg" alt="DOI">
  </a>
  <br>
</h1>

<p align="center">
This knowledge repository, developed during the <a href="https://pharmacome.github.io">Human Brain Pharmacome project</a>, contains documents in Biological Expression Language (BEL) describing neurodegenerative disease phenomena such as tauopathies.
</p>

<p align="center">
  <a href="#installation">Installation</a> •
  <a href="#usage">Usage</a> •
  <a href="#contributing">Contributing</a> •
  <a href="#license">License</a>
</p>

## Content

- [conib](https://github.com/pharmacome/conib/tree/master/conib): This folder contains curated BEL
  documents. Most have been organized by category (protein of interest, biological process of interest, pathway, etc.).
  Almost BEL documents correspond to a single publication, but a select few contain content from several due to
  topic-based curation.
- [docs](https://github.com/pharmacome/conib/tree/master/docs): This folder contains automatically generated HTML
  summaries of the content that can best be accesed through https://pharmacome.github.io/conib.
- [notebooks](https://github.com/pharmacome/conib/tree/master/notebooks): This folder contains various Jupyter
  notebooks associated with the repository. Since many of them use PyBEL-Jupyter, they may be best viewed using
  [NBViewer](https://nbviewer.jupyter.org/github/pharmacome/conib/tree/master/notebooks/).

### Curation Planning

Here are a few links for navigating the GitHub issues and pull requests:

- [Pull requests for curation](https://github.com/pharmacome/conib/pulls?q=is%3Apr+is%3Aopen+label%3ACuration)
- [Pull requests for recuration approved by a reviewer](https://github.com/pharmacome/conib/pulls?q=is%3Apr+is%3Aopen+review%3Aapproved+label%3ARecuration)

## Installation

``conib`` can be installed from [PyPI](https://pypi.org/project/hbp-knowledge/) with the following command:

```bash
$ pip install conib
```

or the latest version can be installed from [GitHub](https://github.com/pharmacome/conib) with:

```bash
$ pip install git+https://github.com/pharmacome/conib.git
```

## Usage

The graph can be loaded with:

```python
import conib

# Get a dictionary of names to graphs
graphs = conib.get_graphs()

# Get all BEL documents as a single graph
graph = conib.get_graph()

# Get all knowledge as INDRA statements
stmts = conib.get_indra_statements()
```

## Contributing

Contributions are welcome! Please submit all pull requests to https://github.com/pharmacome/conib.

## License

- BEL scripts in this repository are licensed under the CC0 1.0 Universal.
- Python source code in this repository is licensed under the MIT license.

## More BEL Content

See [A Listing of Publicly Available Content in the Biological Expression Language (BEL)](https://cthoyt.com/2020/04/30/public-bel-content.html)
on Charles Tapley Hoyt's blog for more BEL content.


