Renku plugin to add metadata about biological samples
Project description
renku-bio
This plugin extends Renku to easily annotate biological samples in Renku metadata. Samples can be annotated on either the project or dataset metadata (using --dataset).
NOTE: For now (renku <= 1.6.0), renku-bio can only add one biosample per dataset. This limitation should be relaxed soon.
Installation
The development version can be installed as a local Python package by running the following command from the root of the repo:
pip install -e .
The stable version is on PyPI and can be installed with pip:
pip install renku-bio
## Usage
A CLI is available with entrypoint `renku bio` the gif belows demonstrates how to use it:
![](assets/demo_renkubio.gif)
<details>
<summary> <b>[Click to expand]</b> Full command from example above</summary>
```sh
➜ renku bio add-sample \
--description "Culture of liver cells from an adult mouse" \
--age 2 \
--taxon "Mus musculus" \
--collector "SDSC" \
--gender Male mouse_liver \
--location "Lausanne" \
--date 2022-08-10
After adding the biosample above, the project metadata graph would have the following structure:
The new "BioSample" node was created by renku bio add-sample
. The information provided for sampling location, collector organization and taxon are enriched using third party APIs. For example, the "Taxon" node now has "scientificName", "taxonRank" and "parentTaxon" in addition to the name provided.
[Click to expand] Compact view of the full biosample metadata
[
{
"@id": "https://renkulab.io/projects/renku-bio/mouse_liver",
"@type": "http://bioschemas.org/BioSample",
"http://schema.org/dateCreated": "2022-08-10",
"http://bioschemas.org/collector": {
"@id": "https://ror.org/02hdt9m26",
"@type": "http://schema.org/Organization",
"http://schema.org/name": "Swiss Data Science Center"
},
"http://bioschemas.org/isControl": false,
"http://bioschemas.org/locationCreated": {
"@id": "https://renkulab.io/projects/renku-bio/mouse_liver/loc",
"@type": "http://schema.org/Place",
"http://schema.org/latitude": 46.5218269,
"http://schema.org/longitude": 6.6327025,
"http://schema.org/name": "Lausanne, District de Lausanne, Vaud, Schweiz/Suisse/Svizzera/Svizra"
},
"http://bioschemas.org/samplingAge": 2,
"http://bioschemas.org/taxonomicRange": {
"@id": "https://renkulab.io/projects/renku-bio/mouse_liver/tax",
"@type": "http://bioschemas.org/Taxon",
"http://bioschemas.org/parentTaxon": "Mus",
"http://bioschemas.org/scientificName": "Mus musculus",
"http://bioschemas.org/taxonRank": "species",
"http://schema.org/name": "house mouse"
},
"http://schema.org/description": "Culture of liver cells from an adult mouse",
"http://schema.org/gender": "Male",
"http://schema.org/name": "mouse_liver"
}
]
Current state:
Checklist:
- Interactively prompt user to select relevant API result (ROR, EBI, OSM)
- Use dataset annotations instead of project
- Use Renku API to fetch metadata instead of CLI + subprocess
- Change console entrypoint to make into a renku plugin
- Add support for experimental assay (potentially with LabProtocol)
- Restructure CLI into renku bio {sample,assay} {add,ls,rm,show}
- PoC to query a list of datasets (or projects) based on BioSample annotations.
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
Hashes for renku_bio-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ccd76d559a985ea0fb53eae886c1c8878e201a4b40d7f640fe890abf4750504 |
|
MD5 | 1eeabc9feb5be8a2886c21e75c325e26 |
|
BLAKE2b-256 | 32e459373a51daba1957bb338ed57cc9e2a45d34c441af7a14e773b4b2709e9e |