A module that parses different diagnostic variant data.
Project description
About this module
This Python module was designed to provide a simple parser for different diagnostic variant information data.
How to use the SnvParser class
Parsing a SNV file following the formats described above is fairly simple. Just create an SnvParser object with the path to the tsv-file and specify its type by providing the correct header (SSnvHeader, GSnvHeader, ...).
from mtbparser.snv_parser import SnvParser
from mtbparser.snv_utils import SSnvHeader
# Path to a valid SNV tsv file, as specified in
# the file format documentation.
somatic_snv_file = "/path/to/mySSnv.tsv"
# Create parser object for somatic SNVs
parser = SnvParser(somatic_snv_file, SSnvHeader)
# Iterate through parsed SNV items and get the gene name
for snv_item in parser.getSNVs():
print(snv_item.get_snv_info(SSnvHeader.GENE.name))
Detailed documentation
A more detailed documentation can be found on Github.
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
mtbparser-0.2.tar.gz
(7.0 kB
view details)
File details
Details for the file mtbparser-0.2.tar.gz
.
File metadata
- Download URL: mtbparser-0.2.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0ce74d4c7aceb679d45bf8b7ddf79c647ad731ff3ba9910ca3fb6905f93bb37 |
|
MD5 | b0f7e1b5ae5a8281c64443478fdc8dd7 |
|
BLAKE2b-256 | e360490172f57b94f365bd7e17a3d04ca34722e3f9a14045ed9ae6c7e51dc45b |