suck, parse identifiers or accession numbers
Project description
\n# parseID: suck, parse identifiers or accession numbers
Introduction
parseID is a bioinformatics data structure library optimized for sucking identifiers or accession numbers into memory, parse those identifiers accession numbers to each other.
Identifiers or accession numbers are defined and referenced by various biological databases. Their number could be million size or even billion level. Some data operations, such as query or parse, are very common.
parseID employs Data structure "trie" and "ditrie". Trie could suck tremendous identifiers into memory at a time. Ditrie could suck a large number of mapping of identifiers. Through the trie and ditrie, huge data operations including insert, get, search, delete, scan etc could be quickly called.
testing
pytest -s tests
quick start
There is one example about how huge accession numbers are sucked into Trie. The mapping file could be downloaded from https://ftp.ncbi.nlm.nih.gov/gene/DATA/gene_refseq_uniprotkb_collab.gz into local space. Retrieve 176,513,729 (03/25/2024) UniProt Accession numbers from the file and feed them into Trie. Showed as the example below, accession numbers are stored in the object uniprotkb_acc_trie.
from parseid import ProcessID
infile = 'gene_refseq_uniprotkb_collab'
uniprotkb_acc_trie = ProcessID(infile).uniprotkb_accession()
Retrieve pairs of NCBI protein accession number and UniProt Accession numbers from file and feed them into Ditrie. Showed as the example below, the mapping fo two accession numbers are stored in the object map_trie, which is ready for query or parsing.
from parseid import ProcessID
infile = 'gene_refseq_uniprotkb_collab'
ncbi_uniprotkb_ditrie = ProcessID(infile).map_ncbi_uniprotkb()
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 parseid-0.1.5.tar.gz
.
File metadata
- Download URL: parseid-0.1.5.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 870fb095e304176397f1d81f5bf3c1d5e490da03f83cff6f1ff88228ae28b530 |
|
MD5 | 66b9df540c19de082312de329c69cedd |
|
BLAKE2b-256 | f684fa4ec96308516861eb0cc70a72af4fbcff3c2523c5728551f238d112a0d3 |
File details
Details for the file parseid-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: parseid-0.1.5-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32c131c0edcf2f60edb77ce1203c5b01a56b67df02d5c43978ab1ca3515bfb0a |
|
MD5 | 284a957cfff6a232ff52a7739f544aa6 |
|
BLAKE2b-256 | a906535f4f560b3bb5477c88fbd9aceaa33b1c6bf641e0b9f6d0123b88368972 |