Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Lspoor
    Member
    • Mar 2010
    • 18

    vcfutils.pl -specifying minimum read depth?



    Hi everyone, I was wondering if you might be able to help me with specifying a minimum read depth when calling consensus sequences?

    I'm running samtools-0.1.18 on Ubuntu 10.04. I have produced VCF files for all sites for my bacterial genome sequences (from BWA BAM files), which seem ok (based on using the following commandline: /samtools-0.1.18/samtools mpileup -E -q30 -Q30 -uf REF.fa isolate1.merged.bam | /samtools-0.1.18/bcftools/bcftools view -cg - > isolate1.all_sites.vcf), and am using the following command line in vcftools with the aim of specifying a minimum read depth of 3 when calling the genome consensus sequences:

    /samtools-0.1.18/bcfutils/vcfutils.pl vcf2fq -d3 AB10.all_sites_E_q30_Q30.vcf > AB10.all_sites_E_q30_Q30_RD3.fq (which I convert to FASTA using a python script).

    Whether or not I specify the option -d3 (I believe 3 is the default anyway) in the commandline, in all cases where the VCF file states that DP=1 or DP=2, rather than not calling the base, it calls a lowercase letter at these sites.

    Over the course of my genomes, this amounts to approximately 48 000 bases in each genome which have been called lowercase, which includes approximately 650 variant sites. If these variant sites are of poor quality and include potentially false positive SNPs, this may be adversely affecting my downstream phylogenetic analysis.

    My questions are:
    a) Does anyone know if this is normal for it to insert a lowercase base rather than calling 'n' at these sites (which is what I was incorrectly assuming it would do!)
    b) What are your opinions on whether I should just replace all of these sites with an 'n' to be on the conservative side?

    Any help is much appreciated, SeqAnswers has been so great at helping in the past!

    Best Wishes,

    Laura
  • wzhjlau2009
    Junior Member
    • Jun 2011
    • 5

    #2
    how about your results finally ? i am doing the same process as your had done . i want to know may i have a chance to have a communication with you about this area.my email:[email protected] QQ:461739553
    best wishes,
    wisdom

    Comment

    • swbarnes2
      Senior Member
      • May 2008
      • 910

      #3
      Here's the relevent part of the script:

      Options: -d INT minimum depth [$opts{d}]
      -D INT maximum depth [$opts{D}]
      -Q INT min RMS mapQ [$opts{Q}]
      -l INT INDEL filtering window [$opts{l}]
      my $_Q = $opts{Q};
      my $_d = $opts{d};
      my $_D = $opts{D};
      my %het = (AC=>'M', AG=>'R', AT=>'W', CA=>'M', CG=>'S', CT=>'Y',
      GA=>'R', GC=>'S', GT=>'K', TA=>'W', TC=>'Y', TG=>'K')

      ...

      my ($ref, $alt) = ($t[3], $1);
      my ($b, $q);
      $q = $1 if ($t[7] =~ /FQ=(-?[\d\.]+)/);
      if ($q < 0) {
      $_ = ($t[7] =~ /AF1=([\d\.]+)/)? $1 : 0;
      $b = ($_ < .5 || $alt eq '.')? $ref : $alt;
      $q = -$q;
      } else {
      $b = $het{"$ref$alt"};
      $b ||= 'N';
      }
      $b = lc($b);
      $b = uc($b) if (($t[7] =~ /MQ=(\d+)/ && $1 >= $_Q) && ($t[7] =~ /DP=(\d+)/ && $1 >= $_d && $1 <= $_D));
      So basically, the only way an N gets put in is if the FQ is < 0 (which happens when your SNP is mixed), and there's no single letter code for that mix.

      Otherwise, it will be lowercase unless the MQ and DP are within the ranges you set in the options, in which case, it's uppercase.

      Comment

      • ymwur
        Member
        • Nov 2012
        • 11

        #4
        Hi,
        So, I am wodnering what does a N in the concesus generated by mpileup measns?
        I am still confused about when FQ can be samller than 0? I am not sure what does mixed SNP mean?
        Does a N mean there is no read mapped to that particular site (if the bam is resulted by BWA mapping)?

        Thans,

        Chih-Ming

        Comment

        Latest Articles

        Collapse

        • 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
        • SEQadmin2
          Cancer Drug Resistance: The Lingering Barrier to Rising Survival
          by SEQadmin2



          Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

          There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
          07-08-2026, 05:17 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by SEQadmin2, 07-24-2026, 12:17 PM
        0 responses
        29 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-23-2026, 11:41 AM
        0 responses
        21 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-20-2026, 11:10 AM
        0 responses
        212 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-13-2026, 10:26 AM
        0 responses
        78 views
        0 reactions
        Last Post SEQadmin2  
        Working...