No project description provided
Project description
Annobee
About The Project
annobee is designed to analyze genetic variants to determine their pathogenicity using multiple established criteria. It integrates several functions to set various genetic criteria based on evolutionary conservation, allele frequency, and ACMG/AMP standards. The main functionality is centralized in the main.py.
Built With
Getting Started
To get a local copy up and running follow these simple example steps.
Prerequisites
- MongoDB: You can download it from MongoDB Download Center.
- Python: Download Python here.
Requirements
- flask==2.0.1
- numpy==1.23.5
- pandas==1.5.3
- requests==2.25.1
- tqdm==4.65.0
Installation
- Clone the repo
git clone https://github.com/variantAnnotation/annobee-sdk.git - Follow to directory where you clone the repo:
cd annobee-sdk - Install requirements and dependencies:
pip install -r requirements.txt
Usage
Starting the Flask API
To start the Flask API that the SDK communicates with:
python app.py
Command-Line Interface
To use the annobee-sdk, you can execute the CLI tool with various options to evaluate genetic variant criteria.
Example 1: Evaluate Specific Criteria (PS1)
python cli.py 1-14973-A-AG --endpoint http://localhost:5000/api/interpret -ps1
Example 2: Evaluate All Criteria
python cli.py 1-14973-A-AG --endpoint http://localhost:5000/api/interpret -all
Using the Annobee Class in a Python Script
Here's an example script that evaluates multiple variants using the Annobee class:
import json
from cli import Annobee
def evaluate_variant(annobee, variant, criteria):
variant_info = annobee.get_criteria(variant)
results = {}
if criteria == 'all':
results = annobee.get_all(variant_info)
else:
for criterion in criteria:
if criterion == 'PS1':
results['PS1'] = annobee.get_ps1(variant_info)
elif criterion == 'PM5':
results['PM5'] = annobee.get_pm5(variant_info)
elif criterion == 'BP7':
results['BP7'] = annobee.get_bp7(variant_info)
elif criterion == 'PVS1':
results['PVS1'] = annobee.get_pvs1(variant_info)
# Add more criteria as needed
return results
if __name__ == '__main__':
# Set the endpoint
endpoint = 'http://localhost:5000/api/interpret'
annobee = Annobee(endpoint=endpoint)
# List of variants
variants = [
'1-14973-A-AG',
'2-23214-G-T',
'3-45321-C-A',
'4-55423-T-G',
'5-67432-A-C'
]
# Evaluate one criterion for one variant
print("Evaluating one criterion (PS1) for one variant:")
result_one_criterion = evaluate_variant(annobee, variants[0], ['PS1'])
print(json.dumps(result_one_criterion, indent=4))
# Evaluate three criteria for one variant
print("\nEvaluating three criteria (PS1, PM5, BP7) for one variant:")
result_three_criteria = evaluate_variant(annobee, variants[0], ['PS1', 'PM5', 'BP7'])
print(json.dumps(result_three_criteria, indent=4))
# Evaluate all criteria for one variant
print("\nEvaluating all criteria for one variant:")
result_all_criteria = evaluate_variant(annobee, variants[0], 'all')
print(json.dumps(result_all_criteria, indent=4))
Running the Test Script
Ensure your Flask API is running and that the cli.py script with the Annobee class is in the same directory or properly installed. Then run the test.py script:
python test.py
This will print the results of evaluating both one criterion, three criteria, and all criteria for the first variant in the list using the specified endpoint. Adjust the criteria and variant list as needed for your specific use case.
Roadmap
- Adding testing metrics regarding the performance of the platform
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
License
Distributed under the MIT License. See LICENSE.txt for more information.
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
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 annobee-0.6.1.tar.gz.
File metadata
- Download URL: annobee-0.6.1.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92bb2bbb44fa6e73fef7a1506985d7a74239877493b3952e5348c70b77e64f74
|
|
| MD5 |
53f66ba82cd5d406e3408ed2cda6765a
|
|
| BLAKE2b-256 |
341b4af4617edc38a9f6d43b280900e06909aad777cc20ea1669c34ff885ba68
|
File details
Details for the file annobee-0.6.1-py3-none-any.whl.
File metadata
- Download URL: annobee-0.6.1-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b666e5c5d9e1ff1b8643d742a2f73efc59317e21ffe8e83abe10da343640013
|
|
| MD5 |
292bda50100c8b48c8bd2099e1036dda
|
|
| BLAKE2b-256 |
6a2c9f9417f59ccb7f750162d13b1fe34077517a912d77fdd4afde9a8fa4d88f
|