Changes between Version 16 and Version 17 of SOPs/variant_calling


Ignore:
Timestamp:
07/20/16 08:30:23 (9 years ago)
Author:
gbell
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/variant_calling

    v16 v17  
    5858== Call raw variants with mpileup+bcftools ==
    5959
    60 Call variants (one sample vs. reference) with samtools' mpileup+bcftools (see the [http://samtools.sourceforge.net/mpileup.shtml| samtools' variant calling page] for more details).
    61 In our experience, "-B" is needed to disable BAQ computation, which would otherwise remove many obvious variants.
     60Call variants (one sample vs. reference) with samtools' mpileup+bcftools (see the [http://samtools.sourceforge.net/mpileup.shtml samtools' variant calling page] for more details).
     61In our experience, "-B" (disable BAQ) or "-E" (recalculate BAQ) works better than the default method, which can remove some obvious variants.
    6262{{{
    6363samtools mpileup -d100000 -t DP,DPR,DV,DP4,INFO/DPR,SP -Buf /nfs/genomes/sgd_2010/bwa/sacCer3.fa A_reads.bt2.sorted_unique.bam | bcftools call -O b -v -c - >| A_reads.bt2.sorted_unique.raw.bcf