Variant calling for microbial genomes
1
1
Entering edit mode
9.6 years ago
Linda ▴ 150

I have reads from a bacterial sequence and I want to identify variants in them. I have performed an alignment using bwa mem and the reads aligned well. Is there a good pipeline for identifying SNPs, small indels etc in microbes? I could use mpileup but I don't find many people recommending that.

variant-calling ngs • 2.0k views
ADD COMMENT
2
Entering edit mode
9.6 years ago
Dan D 7.4k

Well, dunno about other people, but I like samtools mpileup. It has always worked well for me in the microbial context:

samtools mpileup -uf [genome] [bam] | bcftools view -vcg - > vcfs > [filename].vcf
ADD COMMENT
0
Entering edit mode

Do you just use the default parameters, or do you modify them in any way?

ADD REPLY
1
Entering edit mode

It depends on what question I'm trying to answer, but the default parameters are a good starting point. From there you can survey your VCF, look for patterns that you want to investigate further or filter out, and then rerun the command accordingly.

ADD REPLY

Login before adding your answer.

Traffic: 2772 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6