Skip to main content

VaSeBuilder, a bioinformatic tool for artificially combining multiple NGS samples into a single, hybrid sample.

Project description

VaSeBuilder

Validation Set Builder  

 

Quick Start

Inputs and Outputs

The workflow for VaSeBuilder generally involves as inputs:

  • Donor materials:
    • a collection of indexed BAM/CRAM files ("donors") from which to pull reads
    • their variant calls (VCF/BCF files)
    • a list of variants to include (technically optional, but highly recommended for practical use)
  • Acceptor materials:
    • a BAM file to use as an "acceptor"
    • the FastQ files used to produce the acceptor BAM file

At the end of a full run, VaSeBuilder will produce:

  • a set of hybrid FastQ files containing reads from both the acceptor and donors
  • a file recording information about where variant reads were added

Workflows

VaSeBuilder has two overall workflows:

  1. Full workflow from inputs to outputs (BuildValidationSet).
    • Acceptor and donors go in
    • Hybrid FastQs come out
  2. Scalable workflow in two parts.
    • Make spike-in building blocks (BuildSpikeIns)
      • Acceptor and donors go in, only small donor pieces come out
      • Make as many as desired
    • Compile spike-ins into hybrid FastQ (AssembleValidationSet)
      • Acceptor FastQs and spike-ins go in
      • Hybrid FastQs come out

Command Line Examples

For a full workflow:

python vase.py BuildValidationSet \  
  -b donor1.bam donor2.bam donor3.bam \
  -v donor1.vcf.gz donor2.vcf.gz donor3.vcf.gz \
  -f my_variants_of_interest.tsv
  -a acceptor.bam \
  -1 acceptor_R1.fastq.gz -2 acceptor_R2.fastq.gz \
  -r reference_genome.fasta

To construct spike-in building blocks for the scalable workflow:

python vase.py BuildSpikeIns \
  --output-mode P \
  -b donor1.bam donor2.bam donor3.bam \
  -v donor1.vcf.gz donor2.vcf.gz donor3.vcf.gz \
  -f my_variants_of_interest.tsv \
  -a acceptor.bam \
  -r reference_genome.fasta
  • Note that setting --output-mode P will output one spike-in building block per desired variant, which is useful for building up a database of spike-ins for future use. See documentation for details and possible use cases of other output modes.

To compile spike-ins into a hybrid FastQ:

python vase.py AssembleValidationSet \
  -kb spike_in_1.bam spike_in_2.bam spike_in_3.bam \
  -kv spike_in_1.vcf.gz spike_in_2.vcf.gz spike_in_3.vcf.gz \
  -1 acceptor_R1.fastq.gz -2 acceptor_R2.fastq.gz \
  -c varcon_file.tsv

About VaSeBuilder

Short introduction

Often when a computational analysis consisting of multiple steps is run routinely, a pipeline is constructed. The pipeline connects the individual analysis steps and automates the execution of each and transition to the next. Pipelines can be evaluated to determine whether each step and transition to the next works correctly. Simultaneously, validation of the pipeline to determine whether it can indeed provide relevant results is equally important. Pipelines can be validated in separate and isolated runs but this requires time. We aim to combine the running of analyses and validation of the pipeline.
VaSeBuilder (Validation Set Builder) can be used to construct two FastQ files with forward and reverse reads for the validation of the Molgenis NGS_DNA pipeline. To construct these two FastQ files data from samples already processed with the NGS_DNA pipeline are used to modify a template.
The sample data should consist of a BAM file (containing aligned reads) and a VCF file containing identified variants.
The template can for example be the NA12878 sample and should first be processed with the NGS_DNA pipeline. VaSeBuilder only requires the two FastQ and the produced BAM file.

What does VaSeBuilder do?

For each sample, VaSeBuilder iterates over the variants within the VCF/BCF file (if a variant list is provided only variants satisfying that list will be used). First reads overlapping directly with the variant are identified in both the acceptor/template and the donor BAM/CRAM file of the same sample. From these reads and their mates the left and right most position is determined which establishes the acceptor context and donor context respectively. From these two contexts the variant context is determined. This context spans the absolute left and right most genomic positions of both contexts and can (quite often) be larger than either. Reads overlapping with this variant context and their mates are then identified and saved.
After processing all donor samples, the acceptor/template fastq files are used to produce the validation set fastq files. Acceptor reads within a variant contexts are excluded from these new fastq files and are replaced with donor reads that are located in the same variant context. This produces a set of fastq files for with known variants that should be able to be identified and which reads carry those variants.
Currently VaSeBuilder only works with 'simple' genomic variants such as SNPs and small indels, but this may very well be expanded in the future :)

What are acceptor, donor and variant contexts?

VaSeBuilder creates the validation set by identifying for each variant which acceptor reads to be exchanged with which donor reads. The acceptor context is the window established by the leftmost and rightmost genomic positions of reads directly overlapping with the variants and their read mates (which likely do not overlap). The donor context works the same as the acceptor context but instead uses a donor file.
The variant context is established by combining the minimum and maximum border of acceptor and donor context and thereby spans both. Since the variant context spans a larger area than both acceptor and donor context individually, acceptor and donor reads and their mates are identified again. Acceptor reads overlapping with the variant context and their mates are excluded and replaced by donor reads overlapping with the variant context.

Required software

  • Python 3.6 or higher
  • Pysam 0.14 or higher
  • Linux file command v5.37 or higher
  • HTSlib 1.7 or higher
  • SAMtools 1.7 or higher

Important to know

VaSeBuilder is intended to build a validation set from acceptor and donor data that was sequenced with the same sequencer/sequencing platform and treated with the same preparation and capturing kit. (Please see the documentation later as to why...)  

 

Program output

Aside from the forward and reverse read FastQ files, the program also outputs a set of text files. These files are all related to the variant contexts. Although the names of some files can be set via the optional parameters, below we used the default names to describe each.

Default output files

  • donorbams.txt: List of donor BAM/CRAM files used to create the validation set
  • donorvcfs.txt: List of donor VCF/BCF files used to create the validation set
  • varcon.txt: List of variant contexts that build the validation set
  • varconstats.txt: Basic variant context statistics (average and median)
  • variantcontexts.bed: The variants contexts in bed file format.
  • VaSeBuilder.log: The log file containing data about the run of the program

Debug output files

  • acceptorcontexts.txt: List of established acceptor contexts.
  • acceptorcontextstats.txt: Basic acceptor context statistics
  • acceptor_unmapped.txt: List of acceptor read identifier per acceptor context that have unmapped read mates
  • acceptor_positions.txt: List of all acceptor R1 read left starting positions and R2 read right ending positions per acceptor context
  • donorcontexts.txt: List of established donor contexts.
  • donorcontextstats.txt: Basic donor context statistics
  • donor_unmapped.txt: List of donor read identifiers per donor context that have unmapped read mates.
  • donor_positions.txt: List of all donor R1 read left starting positions and R2 read right ending positions per donor context
  • varcon_unmapped_acceptor.txt: List of variant context acceptor read identifiers that have unmapped mates per context
  • varcon_unmapped_donor.txt: List of variant context donor read identifiers that have unmapped mates per context
  • varcon_positions_acceptor.txt: List of all variant context acceptor R1 read left starting positions and R2 read right ending positions per variant context
  • varcon_positions_donor.txt: List of all variant context donor R1 read left starting positions and R2 read right ending positions per variant context  

 

Questions & Answers

General questions

Q: Which python version is required?
A: VaSeBuilder has been created to run in Python 3. To run the program on Python 2 the code might need to be changed first.

Q: Which python libraries are required?
A: VaSeBuilder uses pysam and gzip. The easiest way to obtain these libraries is to install them via pip (pip install library). Note that the pysam library itself requires htslib which doesn't run on the Windows platform.

Q: Which pysam version is required?
A: Pysam 0.14.0 or higher is required as VaSeBuilder uses the get_forward_sequence() and get_forward_qualities() methods that were introduced in pysam 0.14.0.

Q: Can VaSeBuilder be run on Windows?
A: Some adjustments would need to be made as pysam can't be used on Windows. The python library bamnostic can replace pysam for working with BAM files. Reading and processing VCF would need to be done with the default python file reading/writing functionality or other libraries (if available).

Q: Are sample identifiers required?
A: Yes, VaSeBuilder uses the sample identifiers in BAM and VCF files to link the two files. You can check if a BAM has sample information by examing the header for a line similar to: @RG ID:Sample SM:Sample You can extract the header (samtools view -H bamFile.bam > bamHeader.txt), add a sample by adding the above line with the correct sample name and then reheader the BAM file (samtools reheader bamHeader.txt bamFile.bam > BamFileWithSample.bam).

Specific questions

Q: Is there a simple way to check whether the donor and acceptor reads are indeed added and removed respectively?
A: Currently I'm working on a set of scripts, as well as others, that I have called VaSeUtils which can be used to check this.

Q: What is the effect of using data from different sequencers, prep-kits and/or capturing kits?
A: To still be investigated...  

 

Future things

VaSeBuilder might change into a python project installable via pip.
VaSeBuilder might very well be updated and changed to work with more complex variants.
Make VaSeBuilder into a multiprocessor program to speed up te process.
Let VaSeBuilder work with more complex variants.
Let VaSeBuilder work with trio data.

Please let me know if this documentation is missing things or which things are unclear.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

VaSeBuilder-20.7.1.tar.gz (104.0 kB view hashes)

Uploaded Source

Built Distribution

VaSeBuilder-20.7.1-py3-none-any.whl (122.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page