Skip to content

A fast and accurate tool that identifies Mendelian violations in family trios. Resolve variant representation issues in VCF files

License

Notifications You must be signed in to change notification settings

BerkeCagkanToptas/VBT-TrioAnalysis

Repository files navigation

VARIANT BENCHMARKING TOOLS (VBT)

Author: Berke Cagkan Toptas ([email protected])
Project Language: C++11

VBT provides a set of tools that is used for aligner/variant calling benchmarking. VBT uses vcfeval as its core variant comparison library and htslib to read/write VCF and FASTA files.

Preprint of VBT is published at Biorxiv: Comparing complex variants in family trios

VBT contains 2 tool:

  1. VARIANT COMPARISON
  2. MENDELIAN VIOLATION DETECTOR

Installing VBT:

Using makefile:

VBT uses htslib as an external dependency and it needs to be installed before VBT. Please download the latest htslib version from htslib official page. After you download and extract htslib, you can install it using the following steps: (following steps are tested with htslib 1.6)

cd htslib-1.x
./configure
make
make install

You can download the latest version of VBT using the following git command:

git clone https://github.com/sbg/VBT-TrioAnalysis.git

Once you have successfully installed htslib and download VBT, Then you can use following commands to compile VBT:

cp -R (HTSLIB_PATH)/htslib (VBT_PATH)          //Copy htslib folder to VBT directory
cp (HTSLIB_PATH)/libhts.a (VBT_PATH)/lib       //Copy htslib binaries to VBT/lib 
cp (HTSLIB_PATH)/libhts.so (VBT_PATH)/lib      //Copy htslib binaries to VBT/lib
cp (HTSLIB_PATH)/libhts.so.2 (VBT_PATH)/lib    //Copy htslib binaries to VBT/lib
cd (VBT_PATH)                                  //Go inside the VBT folder where makefile is
make all                                       //Compile VBT

Using dockerfile:

You can run VBT as a docker image. A dockerfile is added to the project that is running on Ubuntu 14.04 instance.

cd (VBT_PATH)
docker build -t vbtapp:v1.0 .
docker run -ti vbtapp:v1.0

Note: If you are unable to compile program or getting runtime error, please contact me. ([email protected])

Parameter format:

./vbt varComp [PARAMETERS]
./vbt mendelian [PARAMETERS]

For additional help, please use the following commands:

./vbt --help
./vbt [module_name] --help

Sample Execution (mendelian):

Example folder contains a minimal example for testing VBT mendelian. We placed chr21 of merged BWA+UG CEPH trio as an input VCF. For the FASTA file, we extract chr21 from GRCh37 reference. In order to run the sample test, following command can be executed :

./vbt mendelian -mother Example/UG_CEU_merged_cleaned_chr21.vcf -father Example/UG_CEU_merged_cleaned_chr21.vcf -child Example/UG_CEU_merged_cleaned_chr21.vcf -ped Example/ceu.ped --outDir Example/output -out-prefix ceu_21_sample

This sample execution will produce:

1. ceu_21_sample_BestPathLogs.txt              //Logs of Best Path Algorithm
2. ceu_21_sample_ChildReportLog.txt            //Mendelian decision for Non-Ref child variants only
3. ceu_21_sample_DetailedLogs.txt              //Detailed human-readable logs of trio concordance analysis
4. ceu_21_sample_tab_delim_detailed_log.tsv    //Tab delimited version of detailed logs
5. ceu_21_sample_trio.vcf                      //Merged output trio (Mendelian decisions are annotated for each record)

For additional parameters, please check mendelian paramater specifications.

Source Code Documentation:

A Doxygen html documentation is available for VBT under Doxygen folder.

About

A fast and accurate tool that identifies Mendelian violations in family trios. Resolve variant representation issues in VCF files

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages