VNtyper: A tool for genotyping MUC1-VNTR
Project description
VNtyper 2.0 - A Pipeline to genotype the MUC1-VNTR
VNtyper 2.0 is an advanced pipeline designed to genotype MUC1 coding Variable Number Tandem Repeats (VNTR) in Autosomal Dominant Tubulointerstitial Kidney Disease (ADTKD-MUC1) using Short-Read Sequencing (SRS) data. This version is a refactored version of VNtyper v1 integrates enhanced variant calling algorithms, robust logging mechanisms, and streamlined installation processes to provide researchers with a powerful tool for VNTR analysis.
- We have developed a web server to provide free access to VNtyper, which runs in the background for ease of use.
Access it through the following link: vntyper-online
Table of Contents
- Features
- Installation
- Usage
- Pipeline Overview
- Dependencies
- Linting and Code Formatting
- Pipeline Logic Diagram
- Results
- Notes
- Citations
- Contributing
- License
- Contact
Features
-
Variant Calling Algorithms:
- Kestrel: Mapping-free genotyping using k-mer frequencies.
- code-adVNTR (optional): Profile-HMM-based method for VNTR genotyping.
- SHARK (optional, FASTQ-only): Rapid filtering and read extraction for MUC1 region in exome/whole-genome data.
-
Comprehensive Logging:
- Logs both to the console and a dedicated log file.
- Generates MD5 checksums for all downloaded and processed files.
-
Flexible Installation:
- Supports installation via
pipusingsetup.py. - Provides Conda environment setup for easy dependency management.
- Supports installation via
-
Subcommands:
install-referencespipelinefastqbamkestrelreportcohortonline
Installation
VNtyper 2.0 can be installed using either pip with setup.py or via Conda environments for streamlined dependency management.
Using setup.py and pip
-
Clone the Repository:
mkdir vntyper git clone https://github.com/hassansaei/vntyper.git cd vntyper pip install .
Usage
VNtyper 2.0 offers multiple subcommands that can be used depending on your input data and requirements. Below are the main subcommands available:
1. Running the Full Pipeline
To run the entire pipeline using a BAM file:
vntyper --config-path /path/to/config.json pipeline \
--bam /path/to/sample.bam \
--output-dir /path/to/output/dir \
--threads 4 --fast-mode
Alternatively, using paired-end FASTQ files:
vntyper --config-path /path/to/config.json pipeline \
--fastq1 /path/to/sample_R1.fastq.gz \
--fastq2 /path/to/sample_R2.fastq.gz \
--output-dir /path/to/output/dir \
--threads 4 --fast-mode
The adVNTR genotyping is optional and skipped by default. To enable adVNTR genotyping, use the --extra-modules advntr option.
New: To enable SHARK filtering on FASTQ reads before the usual QC and alignment (for improved MUC1 detection), add shark to the --extra-modules flag (e.g., --extra-modules shark). This can be done as:
vntyper --config-path /path/to/config.json pipeline \
--fastq1 /path/to/sample_R1.fastq.gz \
--fastq2 /path/to/sample_R2.fastq.gz \
--extra-modules shark \
--threads 4 \
--output-dir /path/to/output/dir
- SHARK will run first on the raw FASTQ files to extract and filter reads covering the MUC1 VNTR region.
- Important: SHARK is only supported in FASTQ mode. If you try to use
--extra-modules sharktogether with--bamor--cram, VNtyper will exit gracefully with a warning.
2. Running VNtyper with Docker
Docker image for VNtyper 2.0 is provided and can be pulled and used as follows:
# pull the docker image
docker pull saei/vntyper:main
# run the pipeline using the docker image
docker run -w /opt/vntyper --rm \
-v /local/input/folder/:/opt/vntyper/input \
-v /local/output/folder/:/opt/vntyper/output \
saei/vntyper:latest \
vntyper pipeline \
--bam /opt/vntyper/input/filename.bam \
-o /opt/vntyper/output/filename/
Important Host Volume Permissions Note:
When mounting host directories into the container (using the-vflag), please ensure that the host directories (e.g.,/local/input/folder/and/local/output/folder/) have the appropriate permissions so that they are writable by the container's non-root user.Why Non-Root?
VNtyper runs as a non-root user for enhanced security and to avoid file ownership issues on your host. Running as root may create files owned by root, leading to permission problems later.There are two ways to ensure proper permissions:
Adjust Host Directory Permissions:
Change the ownership/permissions on the host directories so that the UID and GID match those expected by VNtyper in the container.Use the
--userFlag:
Run the container with the--userflag to specify your current user’s UID and GID. For example:docker run --user $(id -u):$(id -g) -w /opt/vntyper --rm \ -v /local/input/folder/:/opt/vntyper/input \ -v /local/output/folder/:/opt/vntyper/output \ saei/vntyper:latest \ vntyper pipeline \ --bam /opt/vntyper/input/filename.bam \ -o /opt/vntyper/output/filename/Using either method ensures VNtyper can write its log files (e.g.,
pipeline.log) and other outputs without encountering permission errors.
An Apptainer image can be generated from the Docker image as follows:
# create the apptainer sif image
apptainer pull docker://saei/vntyper:main
# run the pipeline using the apptainer image
apptainer run --pwd /opt/vntyper \
-B /local/input/folder/:/opt/vntyper/input \
-B /local/output/folder/:/opt/vntyper/output \
vntyper_latest.sif vntyper pipeline \
--bam /opt/vntyper/input/filename.bam \
-o /opt/vntyper/output/filename/
3. Installing References
vntyper --config-path /path/to/config.json install-references \
--output-dir /path/to/reference/install \
--skip-indexing # Optional: skip BWA indexing if needed
4. Generating Reports
vntyper --config-path /path/to/config.json report \
--output-dir /path/to/output/dir
Pipeline Overview
VNtyper 2.0 integrates multiple steps into a streamlined pipeline. The following is an overview of the steps involved:
- FASTQ Quality Control: Raw FASTQ files are checked for quality.
- (Optional) SHARK Filtering: If
sharkis specified in--extra-modules, raw FASTQ reads are first filtered to extract MUC1-specific reads (especially relevant for exome or large WGS datasets). - Alignment: Reads are aligned using BWA (if FASTQ files are provided).
- Kestrel Genotyping: Mapping-free genotyping of VNTRs.
- (Optional) adVNTR Genotyping: Profile-HMM-based method for VNTR genotyping (requires additional setup).
- Summary Report Generation: A final HTML report is generated to summarize the results.
Dependencies
VNtyper 2.0 relies on several tools and Python libraries. Ensure that the following dependencies are available in your environment:
- Python >= 3.9
- BWA
- Samtools
- Fastp
- Pandas
- Numpy
- Biopython
- Pysam
- Jinja2
- Matplotlib
- Seaborn
- IGV-Reports
You can easily set up these dependencies via the provided Conda environment file.
Linting and Code Formatting
VNtyper adheres to PEP8 style guidelines to ensure clean, readable, and maintainable code. We recommend the following tools:
Using flake8 for Linting
flake8 is used to check for style violations. Note that flake8 only reports issues—it does not automatically fix them.
-
Install flake8:
You can install it as part of the development extras:pip install -e .[dev]
Or install it directly:
pip install flake8
-
Run flake8:
To check your code, run the following command from the project root:flake8 .This command will recursively scan your project and report any PEP8 issues.
Automatic Code Formatting with Black
For automatic formatting, we use Black, which is already included in the development extras.
-
Run Black:
Simply execute the following command in the project root:black .Black will automatically reformat your code according to its opinionated style, which is also compliant with PEP8.
Pipeline Logic Diagram
Below is a logical overview of the VNtyper pipeline:
graph TD
A[Input: FASTQ/BAM] -->|Quality Control| B[Alignment BWA]
B -->|Genotyping| C[Kestrel]
C --> D[Optional: adVNTR]
D --> E[Generate Summary Report]
E --> F[Output: VCF, Summary HTML]
Results
Once the pipeline completes, you will have:
- BAM or FASTQ slices containing MUC1-specific reads.
- VCF files or TSV files with genotyping results (for Kestrel and optional adVNTR).
- HTML summary report including:
- VNTR Region Coverage Statistics: Detailed coverage metrics specifically for the VNTR region, including mean, median, standard deviation, minimum, and maximum coverage, as well as the percentage of the VNTR region with zero coverage.
- Genotyping Calls: Results from Kestrel and optional adVNTR analyses.
- Quality Metrics: When available, includes duplication rate, Q20/Q30 rates, and other quality indicators.
- Pipeline Log: Comprehensive logging information about the pipeline execution.
Notes
- This tool is for research use only.
- Ensure high-coverage WES/WGS or targeted data is used to genotype MUC1 VNTR accurately.
- For questions or issues, refer to the GitHub repository for support.
Citations
If you use VNtyper 2.0 in your research, please cite the following:
- Saei H, Morinière V, Heidet L, et al. VNtyper enables accurate alignment-free genotyping of MUC1 coding VNTR using short-read sequencing data. iScience. 2023.
- Audano PA, Ravishankar S, et al. Mapping-free variant calling using haplotype reconstruction from k-mer frequencies. Bioinformatics. 2018.
- Park J, Bakhtiari M, et al. Detecting tandem repeat variants in coding regions using code-adVNTR. iScience. 2022.
Contributing
We welcome contributions to VNtyper. Please refer to the CONTRIBUTING.md file for guidelines.
License
VNtyper is licensed under the BSD 3-Clause License. See the LICENSE file for more details.
Contact
For questions or issues, please open an issue on GitHub or email the corresponding authors listed in the manuscript.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vntyper-2.0.0b0.tar.gz.
File metadata
- Download URL: vntyper-2.0.0b0.tar.gz
- Upload date:
- Size: 2.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df58478e8c1f463b6d04c076ab8d72bf3bfb49c3e5b43fc0c8bcecf024a7aad7
|
|
| MD5 |
16ca19591a22043fff521cf12cc48254
|
|
| BLAKE2b-256 |
868ab8376598d1ae07058a0d06f5a7107dd96d8da934f16c07e189ad56599e22
|
File details
Details for the file vntyper-2.0.0b0-py3-none-any.whl.
File metadata
- Download URL: vntyper-2.0.0b0-py3-none-any.whl
- Upload date:
- Size: 2.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47b61feaf44d35065e53d8b02b0389b07d4467f39c1403b3f659fc60d9efb6d2
|
|
| MD5 |
a2fe7b7f6e66b278dcf36b8d6df624cc
|
|
| BLAKE2b-256 |
aba01ef2dea15610e8a3f1a2a891fb6c57b6fae90f2b8e048863f510b0822bce
|