This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Convert .Map To .Bam

How can i convert .map files generated from bowtie to .bam files using samtools?

deleted-post

1 answer

There is bowtie2sam.pl script in samtools package, which you can used to convert your .map to .sam

$ ./bowtie2sam.pl 
Usage: bowtie2sam.pl <aln.bowtie>

then use samtools to convert .sam to .bam

Log in to answer this question.