Giving .gff3
and .fasta
files of a genome and .vcf
detected SNPs onto this genome, VCFSYNONYMOUS returns two .vcf
files. The first one contains synonymous SNPs and the second one contains non-synonymous SNPs.
pip3 install vcfsynonymous
vcfsynonymous --vcf tests/data/sample.vcf \
--genome tests/data/genome.fasta \
--annotation tests/data/genome.gff3 \
--output_prefix res
git clone git@github.com:Grelot/vcfsynonymous.git
python -m pytest
python -m vcfsynonymous --vcf tests/data/sample.vcf \
--genome tests/data/genome.fasta \
--annotation tests/data/genome.gff3 \
--output_prefix res
pip3 uninstall vcfsynonymous
rm -rf build/
rm -rf dist/
rm -rf vcfsynonymous.egg-info/
python setup.py sdist bdist_wheel
local installation
pip3 install .
twine upload dist/*
pypi installation
pip install vcfsynonymous
pip uninstall vcfsynonymous