Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Bedtools intersectBed with vcf format

    Since I could not find any documentation on how Bedtools intersectBed works with vcf format, I'm posting my question here:

    I'm intersecting a vcf file from mpileup and bcftools with dbSNP132 that is in vcf format:

    intersectBed -a mutations_chr8.vcf -b dbSNP132_chr8.vcf -wao > mutations_chr8_dbSNP132.txt

    In my example below I expected to see only dbSNP entries that have the exactly same coordinates, ie.e chr8 112454855, but I also get hits for chr8 112454865 and chr8 112454876:

    Code:
    chr8	112454855	.	Tacacacacacacacacacacaca	TACacacacacacacacacacacaca	35.5	.	INDEL;DP=24;AF1=0.5;CI95=0.5,0.5;DP4=0,3,2,2;MQ=46;PV4=0.43,0.3,0.34,1	PL:GT:GQ	73,0,78:0/1:75	chr8	112454855	rs76365113	T	A	.	.	dbSNPBuildID=131;VP=050000000001070008000100;WGT=1;VC=SNP;VLD;G5A;G5;KGPilot1	1
    chr8	112454855	.	Tacacacacacacacacacacaca	TACacacacacacacacacacacaca	35.5	.	INDEL;DP=24;AF1=0.5;CI95=0.5,0.5;DP4=0,3,2,2;MQ=46;PV4=0.43,0.3,0.34,1	PL:GT:GQ	73,0,78:0/1:75	chr8	112454855	rs67322031	A	AAC	.	.	dbSNPBuildID=130;VP=050000000001000000000200;WGT=1;VC=INDEL	1
    chr8	112454855	.	Tacacacacacacacacacacaca	TACacacacacacacacacacacaca	35.5	.	INDEL;DP=24;AF1=0.5;CI95=0.5,0.5;DP4=0,3,2,2;MQ=46;PV4=0.43,0.3,0.34,1	PL:GT:GQ	73,0,78:0/1:75	chr8	112454855	rs71851070	TAC	T	.	.	dbSNPBuildID=130;VP=050000000001000000000200;WGT=1;VC=INDEL	3
    chr8	112454855	.	Tacacacacacacacacacacaca	TACacacacacacacacacacacaca	35.5	.	INDEL;DP=24;AF1=0.5;CI95=0.5,0.5;DP4=0,3,2,2;MQ=46;PV4=0.43,0.3,0.34,1	PL:GT:GQ	73,0,78:0/1:75	chr8	112454865	rs34424884	CAC	C	.	.	dbSNPBuildID=126;VP=050000000001000000000200;WGT=1;VC=INDEL	3
    chr8	112454855	.	Tacacacacacacacacacacaca	TACacacacacacacacacacacaca	35.5	.	INDEL;DP=24;AF1=0.5;CI95=0.5,0.5;DP4=0,3,2,2;MQ=46;PV4=0.43,0.3,0.34,1	PL:GT:GQ	73,0,78:0/1:75	chr8	112454876	rs36066513	ACA	A	.	.	dbSNPBuildID=126;VP=050100000001030100000200;WGT=1;VC=INDEL;SLO;G5A;G5;GNO	3
    This is correct and useful considering that indel coordinates are often a bit shifted. However, I'd like to how Bedtools determines the interval in which to look for the intersection. I guess it determines the length of the reference allele the -a file, but does it also do the same for the -b file? And how could I restrict the intersection to the exact position instead of the interval?

    Thanks in advance for any help - and for Bedtools in general

    Barbara

  • #2
    Hi Barbara

    If you generate a bed file from your VCF file you can define intervals for one base like this:

    Code:
    chr8	112454855 112454856 Tacacacacacacacacacacaca	TACacacacacacacacacacacaca	35.5	.	INDEL;DP=24;AF1=0.5;CI95=0.5,0.5;DP4=0,3,2,2;MQ=46;PV4=0.43,0.3,0.34,1	PL:GT:GQ	73,0,78:0/1:75
    Using shell this can be done by:

    Code:
    cat mutations_chr8.vcf | awk '{print $1"\t"$2"\t"$2+1"\t"$0}' | cut -f -3,6- > mutations_chr8.bed
    
    cat dbSNP132_chr8.vcf  | awk '{print $1"\t"$2"\t"$2+1"\t"$0}' | cut -f -3,6- > dbSNP132_chr8.bed
    Then using intersectBed will match exact position.

    Comment


    • #3
      Good trick. Just a minor correction, the VCF pos is 1-based and BED pos is 0-based, so the awk part should be:
      awk '{print $1"\t"$2-1"\t"$2"\t"$0}'

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Advanced Tools Transforming the Field of Cytogenomics
        by seqadmin


        At the intersection of cytogenetics and genomics lies the exciting field of cytogenomics. It focuses on studying chromosomes at a molecular scale, involving techniques that analyze either the whole genome or particular DNA sequences to examine variations in structure and behavior at the chromosomal or subchromosomal level. By integrating cytogenetic techniques with genomic analysis, researchers can effectively investigate chromosomal abnormalities related to diseases, particularly...
        09-26-2023, 06:26 AM
      • seqadmin
        How RNA-Seq is Transforming Cancer Studies
        by seqadmin



        Cancer research has been transformed through numerous molecular techniques, with RNA sequencing (RNA-seq) playing a crucial role in understanding the complexity of the disease. Maša Ivin, Ph.D., Scientific Writer at Lexogen, and Yvonne Goepel Ph.D., Product Manager at Lexogen, remarked that “The high-throughput nature of RNA-seq allows for rapid profiling and deep exploration of the transcriptome.” They emphasized its indispensable role in cancer research, aiding in biomarker...
        09-07-2023, 11:15 PM
      • seqadmin
        Methods for Investigating the Transcriptome
        by seqadmin




        Ribonucleic acid (RNA) represents a range of diverse molecules that play a crucial role in many cellular processes. From serving as a protein template to regulating genes, the complex processes involving RNA make it a focal point of study for many scientists. This article will spotlight various methods scientists have developed to investigate different RNA subtypes and the broader transcriptome.

        Whole Transcriptome RNA-seq
        Whole transcriptome sequencing...
        08-31-2023, 11:07 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, Yesterday, 06:57 AM
      0 responses
      9 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 09-26-2023, 07:53 AM
      0 responses
      8 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 09-25-2023, 07:42 AM
      0 responses
      15 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 09-22-2023, 09:05 AM
      0 responses
      44 views
      0 likes
      Last Post seqadmin  
      Working...
      X