Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jhersheson
    Junior Member
    • May 2013
    • 3

    #1

    exome/vcf merge question

    I research rare mendelian diseases and generally look for shared variants between my related affected samples. Because of variation in the quality and coverage of exomes, I want to be able to look at a merged variant file for all of my affected cases.

    This is relatively straight forward with vcf tools however if for example I am looking at the shared variants of two individuals, some variants may not be shared because of three reasons: 1. one individual has variant allele and one has wild-type i.e. not shared. 2) variant not covered on second exome 3) variant covered on second exome but at allele frequency below cutoff for variant call.

    Can anyone help with a method to annotate the merged variant list with the depth and allele call for each of the samples including calling the wild-type allele where true.

    p.s I had thought of using bedtools to annotate the depth of read at each start position but this wouldnt help me annotate with wildtype calls.

    Thanks

    Josh
  • kgulukota
    Member
    • Oct 2011
    • 30

    #2
    I have a similar problem. I get my sequence data in batches (not all samples at once) and would like to have a running list of variants called on samples thus far.

    As you said, the biggest issue with straightforward merging of VCFs is that we need to differentiate between
    • evidence of absence ("there is sufficient depth at this locus and this sample is reference homozygous") and
    • absence of evidence ("this sample does not have enough coverage to infer whether there is a variant at this locus").

    I am still searching for solutions and will post if I find one.
    Kamalakar Gulukota,
    Director,
    Center for Bioinformatics and Computational Biology
    NorthShore University Health System, [email protected]

    Comment

    • kgulukota
      Member
      • Oct 2011
      • 30

      #3
      Re: Create a VCF with your first bam file, say 1.vcf

      OK. There is a 3-step procedure that can accomplish what you want (I think).

      Step 1. Create VCF's with your first and second bam files separately, say old.vcf and new.vcf.

      Step 2. Next create a combined vcf with the two. I used the CombineVariants walker in GATK like so:
      PHP Code:
      java -jar GenomeAnalysisTK.jar -T CombineVariants -R GRCh37.fa --variant old.vcf --variant new.vcf -o joined.vcf -genotypeMergeOptions  UNIQUIFY 
      But presumably you can do similar with bedtools.

      Step 3. Finally, run the GATK UnifiedGenotyper by using the joined vcf as the target file i.e. with the -L option, like so:

      PHP Code:
      java -jar GenomeAnalysisTK.jar  -T UnifiedGenotyper -R GRCh37.fa -L joined.vcf -I old.bam -new.bam -final.vcf 
      I have combined 30 old bams with 50 new bams using this method and seems to work well.

      However, allow me to hasten to add that the best practice would be to run variant calling on all samples together. The above procedure might be quick and dirty. I think it will be mostly accurate but there will be differences between this procedure and redoing the whole shebang.
      Kamalakar Gulukota,
      Director,
      Center for Bioinformatics and Computational Biology
      NorthShore University Health System, [email protected]

      Comment

      Latest Articles

      Collapse

      • SEQadmin2
        Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
        by SEQadmin2



        CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

        Despite this, “CRISPR helped turn genome editing from a specialized technique into
        ...
        07-31-2026, 11:01 AM
      • SEQadmin2
        Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
        by SEQadmin2


        Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

        The systematic characterization of the human proteome has
        ...
        07-20-2026, 11:48 AM
      • SEQadmin2
        Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
        by SEQadmin2



        Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
        ...
        07-09-2026, 11:10 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, Yesterday, 10:13 AM
      0 responses
      14 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-31-2026, 02:55 AM
      0 responses
      29 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-24-2026, 12:17 PM
      0 responses
      22 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-23-2026, 11:41 AM
      0 responses
      21 views
      0 reactions
      Last Post SEQadmin2  
      Working...