I performed alignment using the same small RNASeq data and reference genome using miRDeep2 and bowtie1, respectively. It is known that miRDeep2 uses bowtie1 for mapping, but the results using miRDeep2 and the results using bowtie1 show very different mapping rates.
While approximately 20% of the results for miRDeep2 are mapped, 85% of the results for bowtie1 are mapped.
The options used are as follows.
miRDeep2
mapper.pl 2023.fastq -e -h -i -j -m -p /home/song/miRNAseq/bowtie_index/STAR/index -s collapsed_2023.fa -t genome_after_2023.arf -v -o 1
bowtie1
bowtie -v 1 -p 4 -S /home/song/miRNAseq/bowtie_index/STAR/index 2023.fastq > ./hg38/38_aligned_data.sam
What's the difference?
I am curious about how to increase the mapping rate when using miRDeep2 and how to analyze the level of miRNA expression using the sam file, which is the result file of bowtie.