I would like to threat the forward and reverse fragments as independent reads in a BWA alignment.
I'm using bwa aln in order to generate data consistent with those generated years earlier by the lab
Given that I have file_R1 and file_R2 with matched forward and reverse fragments,
bwa aln ref.fasta file_R1.fastq > file_R1.sai
bwa aln ref.fasta file_R2.fastq > file_R2.sai
bwa sampe - P ref.fasta file_R1.sai file_R2.sai file_R1.fastq file_R2_fastq > file.sam
will give a mapping that uses R1 and R2 as matched fragments. Given that I have the R1 and R2 fragments in separate files, is there a straightforward way to treat the reads as independent with bwa aln?
bwa