Hash-based phonemic sequence identifiers
Project description
Konstel(lations)
An extensible command line tool, library, and accompanying web app for generating memorable and pronounceable hash-based identifiers for arbitrary sequences. Konstel normalises and hashes a given string, biological sequence or SARS-CoV-2 sequence before encoding the hash digest as a human-friendly phonemic word. This allows privacy preserving confirmation of input equality and can be thought of as the nomenclature equivalent of URL shortening. In the context of an emerging infectious disease outbreak like SARS-CoV-2, this approach can alleviate some of the challenges imposed restrictive data access agreements – I can tell that my sequence is the same as yours without you having to share it with me. Requires Python 3.6+. Presented at ABPHM '21.
SARS-CoV-2 spike protein naming
Phonemic and truncated cbase32 identifiers provide 34 and 35 bits of entropy respectively, collision-free for publicly deposited SARS-CoV-2 spike protein sequences as of 2021-05-05. Phonemic identifiers include consonant-vowel pairs with a separator after the fourth consonant (e.g. dazator-isak
). The first segment provides a useful compromise of identifier length and low collision rate, while inclusion of the second segment achieves collision resistance. Longer identifiers still may be minted by overriding the scheme's default length profile. For a discussion of SARS-CoV-2 naming, please refer to my blog post.
Install
Ideally inside a new virtualenv or conda environment:
# Latest release
pip install konstel
# Development version
git clone https://github.com/bede/konstel
pip install --editable konstel
Usage
Command line
Arbitrary string
$ echo "test" | konstel gen string - # Uses '-' to accept stdin
{"scheme": "string", "hash": "ky3d10c89hypb6hfxagcappg2phvykrv5c5r4b6hbnp1bc7g1840", "id": "fizodo-tafado-fahudu-tinino-mozupo-pagaji-kotabi"}
$ echo "test" | konstel gen string --length 6 --output table - # Custom length, tabular output
scheme string
hash ky3d10c89hypb6hfxagcappg2phvykrv5c5r4b6hbnp1bc7g1840
id fizodo
Arbitrary nucleotide sequence (alphabet -ACGTU
):
$ konstel gen bio.nuc acgt.fa --output table # Fasta containing ACGT
scheme bio
hash 3qzkx17yf1vy0ssvd6xxvkt02973jvhzk51xv28cj6va16pvkbr0
id bituzu-gupahu-zolodu-lumaki-suripi-rozitu-guhabi
$ echo "ACGT" | konstel gen bio.nuc --output table - # ACGT as stdin
scheme bio
hash 3qzkx17yf1vy0ssvd6xxvkt02973jvhzk51xv28cj6va16pvkbr0
id bituzu-gupahu-zolodu-lumaki-suripi-rozitu-guhabi
Ambiguous arbitrary nucleotide sequence (alphabet -ABCDGHKMNRSTUVWY
):
$ konstel gen bio.nuc-ambiguous acgtn.fa --output table # Fasta containing ACGTN
scheme bio
hash t9a5abnf4nwtmbpb59b477218wqrwzf0hasz2qm9gw2ynpkpzgpg
id gifija-jihovo-rufiju-nopofu-rarapo-jinago-lahaja
Arbitrary protein sequence (alphabet *-ACDEFGHIKLMNPQRSTVWY
):
$ konstel gen bio.pro taste.fa --output table
scheme bio
hash nr8npewt0bwamk8s3xwhgxnd47zn6rxsjtrjm4b3eqvvp40rp5g0
id fovahi-josuro-kobaru-mopohu-hinalu-lohimi-topuho
SARS-CoV-2 spike protein sequence:
$ konstel gen sars-cov-2-s.protein spike.prot.fa --output table
scheme sars-cov-2-s
hash S:0k8n9hjh5xh5kbef1k6ye7e2d4brhpry5r985avrtf69v6amrbc0
hash-7 S:0k8n9hj
id S:huhijig-akih
SARS-CoV-2 genome sequence (containing complete spike protein sequence)
$ konstel gen sars-cov-2-s.genome spike.genome.fa --output table
scheme sars-cov-2-s
hash S:0k8n9hjh5xh5kbef1k6ye7e2d4brhpry5r985avrtf69v6amrbc0
hash-7 S:0k8n9hj
id S:huhijig-akih
Python
>>> from konstel import konstel
Arbitrary string:
>>> konstel.generate('string', '-', sequence='test') # From string
{'scheme': 'string', 'hash': 'ky3d10c89hypb6hfxagcappg2phvykrv5c5r4b6hbnp1bc7g1840', 'id': 'fizodo-tafado-fahudu-tinino-mozupo-pagaji-kotabi'}
Arbitrary nucleotide sequence, length 6:
>>> konstel.generate('bio.nuc', '-', sequence='ACGT', length=6) # From string
{'scheme': 'bio', 'hash': '3qzkx17yf1vy0ssvd6xxvkt02973jvhzk51xv28cj6va16pvkbr0', 'id': 'bituzu'}
SARS-CoV-2 spike protein sequence:
>>> konstel.generate('sars-cov-2-s.protein', 'spike.prot.fa') # From fasta file
{'scheme': 'sars-cov-2-s', 'hash': 'S:0k8n9hjh5xh5kbef1k6ye7e2d4brhpry5r985avrtf69v6amrbc0', 'hash-7': 'S:0k8n9hj', 'id': 'S:huhijig-akih'}
Issues
Please let me know if you run into problems by opening a GitHub issue, tweeting @beconstant or mailing me via b at bede dawt im.
Contributing
If you would like to contribute to this project, please open an issue or contact the author directly using the details above.
Before issuing a pull request, please:
- Ensure tests pass by executing pytest inside the package directory (requires pytest package)
- Increment the version number inside
__init__.py
(Using SemVer as a guide) - Update documentation and/or tests if possible
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
File details
Details for the file konstel-0.11.0.tar.gz
.
File metadata
- Download URL: konstel-0.11.0.tar.gz
- Upload date:
- Size: 14.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.24.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10f999a8432af16827dd47607b47db6b1d690a556dfbdbfcd53eb139c5113256 |
|
MD5 | 75377b595e87ba114232933403267788 |
|
BLAKE2b-256 | 53f97635178a8aa16ff430929219d727c7efaacbc1e40cb57091070ae7821170 |