https://github.com/leooojr/divv
Differential Investigation of Variability in Variants
https://github.com/leooojr/divv
bioinformatics python variant-analysis variant-calling variants vcf vcf-comparison
Last synced: 26 days ago
JSON representation
Differential Investigation of Variability in Variants
- Host: GitHub
- URL: https://github.com/leooojr/divv
- Owner: LeoooJR
- Created: 2025-02-28T14:01:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-27T17:17:42.000Z (10 months ago)
- Last Synced: 2025-08-28T02:04:57.486Z (10 months ago)
- Topics: bioinformatics, python, variant-analysis, variant-calling, variants, vcf, vcf-comparison
- Language: C
- Homepage:
- Size: 7.31 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DIVV




## :bookmark_tabs: Table of Contents
- [About](#about)
- [Getting Started](#getting-started)
- [Contacts](#contacts)
DIVV is a software tool designed for comparing two VCF files that have been generated from panel sequencing.
It leverages the CyVCF2 library, which is actively maintained, providing superior VCF file parsing compared to PyVCF. Additionally, tasks are parallelized to enhance efficiency. Moreover, a dynamic report is generated, offering users an optimized and user-friendly visualization of the results.
```bash
# Clone the repository
git clone https://github.com/LeoooJR/DIVV.git
# Changed directory to the cloned repository
cd DIVV
```
### :computer: Local installation
```bash
# Compile htslib
./install.sh ./src
# Get help about DIVV
python src/main.py --help
# Compare VCF files
python src/main.py --vcfs --report --output
```
### :whale2: Using docker
```bash
# Build the image
docker build -t divv .
# Run the container
docker run --rm divv --vcfs --report --output
# Get help about DIVV
docker run --rm divv --help
```
For questions, feel free to reach out to the maintainers through GitHub or connect on LinkedIn.
[Back to top](#top)