Indexing a genome
What does indexing a genome mean? How to index a genome? I have CHO genome from chogenome.org. I want to index the genome since I would like to align my reads from NGS to the genome using Bowtie.
• 6,055 views
•
link
1 answer
Hi For bowtie2, you need to index a genome, thus the indexed genome will be ready for Tophat2 to run mapping. Bowtie2 will prepare index to make tophat job easy.
for indexing by bowtie2:
bowtie2-build genome.fa indexname
for tophat (alingning reads to genome);
in index name argument in tophat,
just write indexname (you created above).
• 0 views
•
link
Log in to answer this question.
what is the purpose of indexing a genome
Hi, I want to index the contigs of the genome to RNA seq reads. How to index the contigs in Bowtie and in what file format should i use the genome contigs for indexing? Please help with this query.
You can use the same bowtie2 commands supplied here for indexing the contigs as long as they are in fasta format.
You need to put your contigs in fasta format and then run bowtie2-build as example given by Mehmet .
Bowtie is not splice-aware and thus not appropriate for eukaryotic RNA-seq. You should use a splice-aware aligner such as STAR or BBMap.