Thank you! It worked!!
• 0 views
•
link
Hi all,
I'm learning bioinformatics from scratch, please bear with me, if I go wrong.
I sequenced (miseq) few of my BACs. I mapped these miseq reads on reference genome using BWA. My question is, how to parse out names of the scaffolds of my reference genome got mapped from alignment file?
Many Thanks
Here is SAM file format specification. You need to use samtools to view the contents of sam/bam file and then manipulate.
If you want to see the scaffolds:
samtools view <input bam> | cut -f3 | less
Thank you! It worked!!
Log in to answer this question.