You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The samples were sequenced in two batches at different points in time, Each batch was analyzed separately with the Sentieon pipeline and we now have two vcfs per sample. How can we merge the calls in the vcfs before running VQRS and CNV on each sample?
The text was updated successfully, but these errors were encountered:
Merging information from the two VCFs is somewhat complex. There will be some discordant calls and it is not clear how the discordant calls should be handled.
Instead of merging the VCFs, you might pass the BAM files from both batches to the variant caller so that it can take advantage of the read information in both datasets to make the most accurate variant calls. If the BAM files from both batches have the same sample readgroup (RGSM), you can pass both BAM files directly to the variant caller:
If the BAM files from the two batches have different RGSM tags, you might use samtools reheader to replace the RGSM information in one of the BAM files.
The result would be similar to starting from the fastq for both batches and then processing the data using the multi-FASTQ.sh script.
The samples were sequenced in two batches at different points in time, Each batch was analyzed separately with the Sentieon pipeline and we now have two vcfs per sample. How can we merge the calls in the vcfs before running VQRS and CNV on each sample?
The text was updated successfully, but these errors were encountered: