Metadata-Version: 2.1
Name: vcfsynonymous
Version: 0.1.19
Summary: Detect synonymous genetic variants in VCF
Home-page: https://github.com/Grelot/vcfsynonymous
Author: Pierre-Edouard GUERIN
Author-email: pierre-edouard.guerin@cefe.cnrs.fr
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: argparse
Requires-Dist: numpy
Requires-Dist: biopython
Requires-Dist: bcbio-gff
Requires-Dist: pyfaidx
Requires-Dist: gffutils
Requires-Dist: PyVCF

# vcfsynonymous

[![PyPI version](https://badge.fury.io/py/vcfsynonymous.svg)](https://badge.fury.io/py/vcfsynonymous)
[![license](https://img.shields.io/pypi/l/vcfsynonymous.svg)](https://pypi.org/project/vcfsynonymous/)
[![Build Status](https://travis-ci.com/Grelot/vcfsynonymous.svg?branch=main)](https://travis-ci.com/Grelot/vcfsynonymous)
[![Supported Python Versions](https://img.shields.io/pypi/pyversions/vcfsynonymous.svg)](https://pypi.python.org/pypi/vcfsynonymous)



read VCF and select synonymous or non-synonymous coding variants



# Get started

```
python3 vcfsynonymous --vcf tests/data/sample.vcf \
 --genome tests/data/genome.fasta \
 --annotation tests/data/genome.gff3
```




# upload package

```
pip3 uninstall vcfsynonymous | yes
rm -rf build/
m -rf dist/
rm -rf vcfsynonymous.egg-info/
python setup.py sdist bdist_wheel

twine upload dist/*
```

