How to align illumina genomic reads of one species to reference genome of other species with loose settings in bowtie2?
2
0
Entering edit mode
8.5 years ago
sun.nation ▴ 140

I am aligning Pinfestans illumina reads to Pcapsici genome.

bowtie2 \
  --local \
  -p 4 \
  -x Pcap_genome \
  -1 ERR299593_1.paired.trimmed.fq \
  -2 ERR299593_2.paired.trimmed.fq \
  -U ERR299593_1.unpaired.trimmed.fq,ERR299593_2.unpaired.trimmed.fq \
  -S ERR299593.sam &> summary_ERR299593

This gave just 0.47% alignment. How can I make the alignment loose or use other tools? Any suggestions. Thanks

bowtie2 • 2.7k views
ADD COMMENT
1
Entering edit mode
ERR299593 is tagged as metagenomic in the short read archive. Are you really sure that the DNA sampled was purely composed of DNA from Phytophthora infestans?
ADD REPLY
0
Entering edit mode

If you just get 0.47% of reads mapped and you are counting the numbers right, probably you can't get good results with any short-read mappers. You should do de novo assembly first and then map the assembly.

ADD REPLY
0
Entering edit mode

@lh3 If I get right, you mean mapping whole assembly to the genome? If yes, can SNPs be called? Thanks

ADD REPLY
1
Entering edit mode
8.5 years ago
h.mon 35k

You may try Anfo or batmis. I believe BBMap is also very forgiving, and it has tons of options to tune the alignment, read is READMe file.

For bowtie2, you may set "-N 1", also look at scoring options.

However, you did not say which kind of reads are you aligning. Is this RNAseq, genomic sequencing, ...? Also, is this the P. infestans you are working on?

ADD COMMENT
0
Entering edit mode

Sorry, it is genomic sequencing. I tried with -N 1 but increased just to 1.5%. I will try those. Yes, its the same Pinfestans but I am trying to align to Pcap genome to find common SNPs position sites. I have other Pcapsici re-sequencing samples too. Thanks.

ADD REPLY
0
Entering edit mode

How similar are both genomes? Does it makes sense to look for SNPs across the whole genome?

I would map reads against it own genome for both species, call SNPs on genes, find orthologous genes and compare SNPs on pairs of orthologous genes.

ADD REPLY
0
Entering edit mode
8.5 years ago
Stoploss25 ▴ 10

You will most likely want to alter the scoring options. See the manual for several of them

http://bowtie-bio.sourceforge.net/bowtie2/manual.shtml#bowtie2-options-mp

Basically every match adds a score, every mismatch/gap subtracts a score, and if the final score after going through the entire read meets some threshold (decided by the scoring function), the alignment is kept. So I would increase the match score (--na), decrease the mismatch and gap penalties (--mp, --rdg, --rfg), and adjust the scoring function with --score-min.

You can read more about the score function here.

I'm not sure exactly what values you should use as I haven't used bowtie in awhile and it will depend on how similar your species are

ADD COMMENT

Login before adding your answer.

Traffic: 2395 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