Entering edit mode
6.8 years ago
Abdul Rafay Khan
★
1.2k
I want to align my uBAM files using bwa mem. Does BWA mem works with uBAM files?
I want to align my uBAM files using bwa mem. Does BWA mem works with uBAM files?
No, you'll have to convert to fastq. Options are e.g. bedtools bamtofastq
or samtools fastq
. Picard has a command for this too but I never used it. You could avoid writing the bam to fastq on disk, if you use a simple pipe solution. This blog entry provides some inspiration on that.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.