I am trying to map RNASeq paired reads (60bp) (breast cancer) to human genome (without mt genome) using Tophat (v2.0.10) and I am returning an alignment rate of 64%. tophat -p 8 -r 200 --mate-std-dev 50 --b2-very-sensitive --phred64-quals -g 10 --microexon-search -G Homo_sapiens.GRCh37.74.gtf GRCh37.74 ff1.fastq ff2.fastq
I used the same reads in Bowtie version 2.1.0 and returned an alignment rate of 79.58% bowtie2 -p 8 --phred64 --very-sensitive -x GRCh37.74 -1 ff1.fastq -2 ff2.fastq -S out.sam
I checked my reads with fastqc and they are ok. but my problem is that why results of tophat and bowtie2 are different? I am really confused. if possible help me.
Thanks in advance
Shouldn't bowtie2 be ran with TopHat together?!