Hello bioinformaticians 
I am mapping 50.000 sequences (stored in .fastq file) to a reference genome. I use default parameters (only single hits).
Results of reported alignments:
bowtie: 38030
novoalign: 38225
shared: 37344
How come the number of shared reported alignments is so low? (~600 alignments difference)?
Did anybody do some studies on which alignments are reported by bowtie/novoalign?
Any idea on how to make this difference smaller, changing the bowtie parameters?
tnx,
Gregor

I am mapping 50.000 sequences (stored in .fastq file) to a reference genome. I use default parameters (only single hits).
Code:
novoalign -Q 20 -g 1000 -x 1000 -d ref_gen -f data_small.fq -o SAM > novoalign.sam
Code:
bowtie ref_gen -n 3 -a -y --nomaqround -B 1 -p 3 -m 1 --best --strata data_small.fq --solexa-quals -S --un bowtie_unmapped.fastq > bowtie.sam
bowtie: 38030
novoalign: 38225
shared: 37344
How come the number of shared reported alignments is so low? (~600 alignments difference)?
Did anybody do some studies on which alignments are reported by bowtie/novoalign?
Any idea on how to make this difference smaller, changing the bowtie parameters?
tnx,
Gregor
Comment