Entering edit mode
3.7 years ago
Jimpix
▴
10
Hey! Taking into consideration commands below:
bowtie2 -x Bowtie2Index/hg19 -U R1.fastq, R2.fastq -S bowtie2_unpaired.sam
and
bowtie2 -x Bowtie2Index/hg19 -U R1.fastq -S bowtie2_unpaired_R1.sam
bowtie2 -x Bowtie2Index/hg19 -U R2.fastq -S bowtie2_unpaired_R2.sam
There is any difference between files bowtie2_unpaired.sam and merged by pysam files bowtie2_unpaired_R1.sam and bowtie2_unpaired_R2.sam? Thanks for the answer.
Not sure if you set the same
--seed
for above commands you would get the same alignment for each read in the two operations.basically what this says is that one would not necessarily get identical BAM files even if they ran Bowtie on the same file.
If one sets the same
--seed
then I was wondering if the results from the two options above will be identical for individual reads. With--non-deterministic
option bowtie2 will report different alignments.