An open API service indexing awesome lists of open source software.

https://github.com/dridk/vcf-parser

vcf parser with annotation
https://github.com/dridk/vcf-parser

Last synced: over 1 year ago
JSON representation

vcf parser with annotation

Awesome Lists containing this project

README

          

## Annotated VCF parser

It supports vep and snpeff annotations

```python
from vcfReader import VcfReader
reader = VcfReader("myvcf.vcf", "vep")

for variant in reader.get_variants():
print(variant["annotations"][0]["impact"]

```