I am working with population specific re-sequenced genome data from A. lyrata. I need to align it to the reference genome which is already available and prepare population specific sequence. I will also do variant calling but for now alignment of fragment to reference genome is what I am interested in.
Could anyone suggest of a pipeline/apps combination that would be helpful for this purpose?
Thanks,
2 answers
I like bowtie2, you can find the manual here. from the results files you can then use SAMTools BCFtools to find variants.
As a VERY general guide your steps should be:
- Build bowtie2 index with
bowtie2-build(bowtie2-build -f myFastaGenome myOutputBaseName) - Align with
botwie2(bowtie2 -x myOutputBaseName -f myFastaFile -S mySamOutput) - Index reference seq with
samtools(samtools faidx myFastaGenome) - Convert previous sam to bam (
samtools -view -bS mySamOutput > myBamOutput) - The command line here
You need to find the A. lyrata reference genome, not sure if [this][4] helps.
Thanks RS. I had read about this but I need something that has documentation and potentially already worked out examples to guide me through the process. Examples always help me understand the data better and helps with interpretation. I have been trying to work with BBmap but for right now I am trying to get it work first. I will see how it goes.
Thanks
Log in to answer this question.
Did you look at (read Google) the tools available for short read alignment?
http://en.wikipedia.org/wiki/List_of_sequence_alignment_software#Short-Read_Sequence_Alignment