Entering edit mode
4.4 years ago
Ada
▴
10
How do I convert .sam to .bam without producing writing .sam file to storage space?
How do I convert .sam to .bam without producing writing .sam file to storage space?
I think he means if there is a way of piping it to generate a bam file directly without going through a sam file intermidiate. Something like this would be my guess:
bowtie2 -x Index -1 Reads1.fq -2 Reads2.fq | samtools view -b -h -o output.bam
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
what does that mean ?