Changes between Version 15 and Version 16 of SOPs/variant_calling


Ignore:
Timestamp:
01/11/16 14:23:50 (9 years ago)
Author:
gbell
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/variant_calling

    v15 v16  
    6161In our experience, "-B" is needed to disable BAQ computation, which would otherwise remove many obvious variants.
    6262{{{
    63 samtools mpileup -d100000 -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
     63samtools 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
    6464#in bcftools call: -m for multi-allelic, -c for bi-alleleic
    6565}}}
    6666Call variants (multiple sample vs. reference) using a set of BAM files
    6767{{{
    68 samtools mpileup -d100000 -Buf /nfs/genomes/sgd_2010/bwa/sacCer3.fa *_reads.bt2.sorted_unique.bam | bcftools call -O b -v -c - >| ALL_reads.bt2.sorted_unique.raw.bcf
     68samtools mpileup -d100000 -t DP,DPR,DV,DP4,INFO/DPR,SP -Buf /nfs/genomes/sgd_2010/bwa/sacCer3.fa *_reads.bt2.sorted_unique.bam | bcftools call -O b -v -c - >| ALL_reads.bt2.sorted_unique.raw.bcf
    6969}}}
    7070