Standalone BiolinkHelper module extracted from RTX
Project description
BiolinkHelper
BiolinkHelper is a lightweight Python utility class for working with a specific Biolink Model version.
Its data source is the Biolink Model YAML file.
Overview
The BiolinkHelper class requires two mandatory inputs at initialization time:
- A Biolink Model version
- A local cache path where Biolink resources are stored (or will be stored)
No defaults are assumed.
Installation
pip install biolink-helper-pkg
Usage
Basic Example
from biolink_helper_pkg import BiolinkHelper
helper = BiolinkHelper(
biolink_version="4.2.6",
cached_path="/data/biolink_cache"
)
Class API
BiolinkHelper
class BiolinkHelper:
def __init__(self, biolink_version, cached_path):
...
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
biolink_version |
str |
Yes | The Biolink Model version to use (e.g. "4.2.6"). This value is mandatory and must be provided explicitly. |
cached_path |
str |
Yes | Path to a directory used for caching Biolink YAML files and lookup maps. Must be readable and writable. |
Both parameters are mandatory. Initialization will fail if either is missing or invalid.
How to use
Examples of ways to get ancestors:
biolink_helper.get_ancestors("biolink:Drug")
biolink_helper.get_ancestors(["biolink:Drug", "biolink:Protein"])
biolink_helper.get_ancestors("biolink:Drug", include_mixins=False)
biolink_helper.get_ancestors("biolink:Protein", include_conflations=False)
biolink_helper.get_ancestors("biolink:treats")
Examples of ways to get descendants:
biolink_helper.get_descendants("biolink:ChemicalEntity")
biolink_helper.get_descendants(["biolink:ChemicalEntity", "biolink:Protein"])
biolink_helper.get_descendants("biolink:ChemicalEntity", include_mixins=False)
biolink_helper.get_descendants("biolink:Protein", include_conflations=False)
biolink_helper.get_descendants("biolink:related_to")
Ancestors/descendants are always returned in a list. Relevant mixins are included in the returned list by default, but you can turn that behavior off via the include_mixins parameter, as shown in some of the above examples. Inclusion of ARAX-defined conflations can be controlled via the include_conflations parameter (default is True).
Other available methods include getting canonical predicates:
biolink_helper.get_canonical_predicates("biolink:treated_by")
biolink_helper.get_canonical_predicates(["biolink:treated_by", "biolink:related_to"])
And filtering out mixins:
biolink_helper.filter_out_mixins(["biolink:ChemicalEntity", "biolink:PhysicalEssence"]])
Debugging
The JSON version saved in cached_path is just there for easier debugging/viewing.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file biolink_helper_pkg-1.0.1.tar.gz.
File metadata
- Download URL: biolink_helper_pkg-1.0.1.tar.gz
- Upload date:
- Size: 9.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70ca463c52f3ee7916b15bd4f6d0b94d94e098d2f99fc4ff0aa7df4d2586aa17
|
|
| MD5 |
188c77c07eb429de4fe2f0ccc311b6bb
|
|
| BLAKE2b-256 |
9a92ef0fcb05603b8cfe22f5957b09b2ea63e70430a99889c38105b3e0d1fd27
|
File details
Details for the file biolink_helper_pkg-1.0.1-py3-none-any.whl.
File metadata
- Download URL: biolink_helper_pkg-1.0.1-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88a0c54eb8947c00684a0770b90ff26c7a90ab69367b786bfd3c4df28f394212
|
|
| MD5 |
cfe44d7bf54131a99e0cca7b7164d21c
|
|
| BLAKE2b-256 |
acc0031b168bd9d0c16f3a0e77701368d0fab19a1f9dd7553fa553d81be46288
|