Palamedes: HGVS variants from a sequence alignment
Project description
palamedes
This repo contains a python package and CLI entrypoint which can be used to generate a list of HGVS variants representing the difference between 2 sequences, using a global alignment. The idea is to leverage the HGVS spec for more applications, since it provides a solid framework for maintaining a consistent set of rules and logic around variants.
Documentation
Documentation for the project can be found here
Installing
Palamedes uses the hgvs package as a dependency. At this time, hgvs
requires postgresql
system dependencies to be installed before use. Please see the README for install instructions if needed.
Palamedes itself is packaged in PyPI, to install simply run: pip install palamedes
Usage - CLI
Palamedes includes a CLI entrypoint, which is mostly useful for debugging and exploration. Once installed, simply run palamedes
and provide a reference and alternate sequence:
palamedes PFKISIHL TPFKISIH
[2024-03-25 11:40:59,904] {cli.py:39} INFO - Running with args: Namespace(ref='PFKISIHL', alt='TPFKISIH', molecule_type='protein')
[2024-03-25 11:40:59,906] {align.py:179} INFO - Found 2 alignments with max score, returning last in the list (3\' end rule)
[2024-03-25 11:40:59,907] {cli.py:45} INFO - Found best alignment with score = 5.0
[2024-03-25 11:40:59,909] {cli.py:46} INFO - Alignment:
ref 0 -PFKISIHL 8
0 -|||||||- 9
alt 0 TPFKISIH- 8
[2024-03-25 11:40:59,909] {cli.py:49} INFO - 2 Variant blocks generated
[2024-03-25 11:40:59,909] {cli.py:54} INFO - VariantBlock(alignment_block=Block(start=0, end=1, bases='i'), reference_blocks=[], alternate_blocks=[Block(start=0, end=1, bases='T')]), categorized as: extension
[2024-03-25 11:40:59,910] {cli.py:57} INFO - As HGVS: ref:p.Pro1extThr-1
[2024-03-25 11:40:59,910] {cli.py:54} INFO - VariantBlock(alignment_block=Block(start=8, end=9, bases='d'), reference_blocks=[Block(start=7, end=8, bases='L')], alternate_blocks=[]), categorized as: deletion
[2024-03-25 11:40:59,910] {cli.py:57} INFO - As HGVS: ref:p.Leu8del
Usage - Python
Palamedes currently includes public functions in __init__.py
that provide the alignment to HGVS functionality. All other functions should be treated as internal and private. No assurances are offered for their consistency and functionality from version to version.
>>> from Bio.Seq import Seq
>>> from Bio.SeqRecord import SeqRecord
>>> from palamedes import generate_hgvs_variants
# using raw strings
>>> generate_hgvs_variants("PFKISIHL", "TPFKISIH")
[
SequenceVariant(ac=ref, type=p, posedit=Pro1extThr-1, gene=None),
SequenceVariant(ac=ref, type=p, posedit=Leu8del, gene=None),
]
# using SeqRecord objects, note the molecule_type annotation must be provided and set to a supported type
# protein is the default and only supported option at this time
>>> ref = SeqRecord(Seq("PFKISIHL"), id="Jelleine-I", annotations={"molecule_type": "protein"})
>>> alt = SeqRecord(Seq("TPFKISIH"), id="Jelleine-IV", annotations={"molecule_type": "protein"})
>>> generate_hgvs_variants(ref, alt)
[
SequenceVariant(ac=Jelleine-I, type=p, posedit=Pro1extThr-1, gene=None),
SequenceVariant(ac=Jelleine-I, type=p, posedit=Leu8del, gene=None)
]
The generate_hgvs_variants
also accepts a pre-built biopython PairwiseAligner
instance to give the caller more control of the alignment parameters via the aligner
keyword argument. The default settings are:
- mode: "global" (note this must be set to global on a custom aligner to ensure and end to end alignment)
- match_score: 1
- mismatch_score: -1
- open_gap_score: -1
- extend_gap_score: -0.1
Name
The package is named after Palamedes, a figure from Greek mythology. Palamedes was associated with the invention of the Greek letters and alphabet as well as with the invention of dice. Palamedes dedicated the first set of dice to the Greek goddess Tyche, who was the goddess of chance and randomness.
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
File details
Details for the file palamedes-0.0.9.tar.gz
.
File metadata
- Download URL: palamedes-0.0.9.tar.gz
- Upload date:
- Size: 23.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90bdeedc7603901da282112c6803c5581930f563df9728b950638c2f7f5c0f6f |
|
MD5 | 2d1d525ea1655ab767b26d666a0748f1 |
|
BLAKE2b-256 | f272af681e05de9172320a61753f47a2ad94c428e8c0e057ed75e2b8960a7e4e |
File details
Details for the file palamedes-0.0.9-py3-none-any.whl
.
File metadata
- Download URL: palamedes-0.0.9-py3-none-any.whl
- Upload date:
- Size: 27.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 494ccde51ed476809b226ae3d38e7629cad285c4673df042fb2810ae07aed2c0 |
|
MD5 | f5883b6601e3d7f4ce8a1fb2daca9faa |
|
BLAKE2b-256 | 39aedf8c46f735e190caa5b394c83898fb8c5e9eacb6db8f5083125b03199bbc |