I have a sam file, I did samtools stats but it didn't work for all sam files, is it needed to do anything before that? for example convert to bam, sort, index and then run samtools stats or not?
thanks in advance
• 1 views
•
link
I am not sure what you're asking here. Please explain in more detail what you did and what you are trying to achieve. Which code you use, etc. Results of alignments are usually put in a BAM file, but your question is too vague to really know what you are asking. A BAM file can be viewed in IGV.
I did the alignment of reads parallel on the server but I don't have their results summary, so I need to see it, what should I do
If by results you mean the alignment in SAM format, you have either to redirect bowtie2 command to a file (
bowtie2 ... > output.sam), or usebowtie2 ... -S output.sam. By default, bowtie2 outputs to stdout.