Mutalyzer SPDI variant description parser.
Project description
Mutalyzer HGVS Parser
.. image:: https://img.shields.io/github/last-commit/mutalyzer/spdi-parser.svg :target: https://github.com/mutalyzer/spdi-parser/graphs/commit-activity .. image:: https://readthedocs.org/projects/mutalyzer-spdi-parser/badge/?version=latest :target: https://mutalyzer-spdi-parser.readthedocs.io/en/latest .. image:: https://img.shields.io/github/release-date/mutalyzer/spdi-parser.svg :target: https://github.com/mutalyzer/spdi-parser/releases .. image:: https://img.shields.io/github/release/mutalyzer/spdi-parser.svg :target: https://github.com/mutalyzer/spdi-parser/releases .. image:: https://img.shields.io/pypi/v/mutalyzer-spdi-parser.svg :target: https://pypi.org/project/mutalyzer-spdi-parser/ .. image:: https://img.shields.io/github/languages/code-size/mutalyzer/spdi-parser.svg :target: https://github.com/mutalyzer/spdi-parser .. image:: https://img.shields.io/github/languages/count/mutalyzer/spdi-parser.svg :target: https://github.com/mutalyzer/spdi-parser .. image:: https://img.shields.io/github/languages/top/mutalyzer/spdi-parser.svg :target: https://github.com/mutalyzer/spdi-parser .. image:: https://img.shields.io/github/license/mutalyzer/spdi-parser.svg :target: https://raw.githubusercontent.com/mutalyzer/spdi-parser/master/LICENSE.md
Package to syntax check and convert SPDI descriptions into a dictionary model.
Quick start
Parse and convert a description from the command line:
.. code-block:: console
$ mutalyzer_spdi_parser -cs "NG_012337.3:10:C:T"
{
"seq_id": "NG_012337.3",
"position": 10,
"deleted_sequence": "C",
"inserted_sequence": "T"
}
$ mutalyzer_spdi_parser -ch "NG_012337.3:10:C:T"
{
"type": "description_dna",
"reference": {
"id": "NG_012337.3"
},
"variants": [
{
"type": "deletion_insertion",
"location": {
"type": "range",
"start": {
"type": "point",
"position": 10
},
"end": {
"type": "point",
"position": 11
}
},
"deleted": [
{
"sequence": "C",
"source": "description"
}
],
"inserted": [
{
"sequence": "T",
"source": "description"
}
]
}
]
}
The to_hgvs_internal_model()
function can be used to obtain the equivalent
HGVS dictionary model (deletion insertion variants with internal locations and
indexing):
.. code:: python
>>> from mutalyzer_spdi_parser import to_hgvs_internal_model
>>> model = to_hgvs_internal_model("NG_012337.3:10:C:T")
>>> model['reference']
{'id': 'NG_012337.3'}
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
File details
Details for the file mutalyzer_spdi_parser-0.3.1.tar.gz
.
File metadata
- Download URL: mutalyzer_spdi_parser-0.3.1.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6211cf4feb548298a8227709511e983621928e0442af4f96d27a8d2a5d3b6af7 |
|
MD5 | 0eaf3bae6e51df99cc8d849373909eb6 |
|
BLAKE2b-256 | 9f70f05095de552332a40e8403b08c392a6c558287d836b1001ceaad443876bf |
File details
Details for the file mutalyzer_spdi_parser-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: mutalyzer_spdi_parser-0.3.1-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07ac3ebf8b3b2cbfcbd1a8d80ec404b74454e59642a79000fdfd174f7b2891e7 |
|
MD5 | bdf4d1757e79ee9de523eba6a79e325b |
|
BLAKE2b-256 | e615627fbc7d918c8ae278ac8ad01691fd5fd49bb5cd96517da7fa01937af1ce |