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
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.
@lh3 If I get right, you mean mapping whole assembly to the genome? If yes, can SNPs be called? Thanks