Is The Bwa Reference Indexing The Same Thing That Fasta Indexing With Samtools?
I have the human reference indexed with samtools samtools faidx, can I use it with bwa? is this file equivalent to the output of bwa index?
• 8,211 views
•
link
1 answer
A faidx index is just a tiny text file containing:
- the file offset of the sequences in the file
- the length of the sequences
- the names of the sequences
- the length of the Fasta lines
An index for BWA is a much more bigger binary Burrows–Wheeler-compressed index of the sequences prefix one can find in the whole genome.
• 2 views
•
link
Log in to answer this question.