This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Mapping scaffolds to another reference genome

Hello,

I have mapped RAD-PE reads to a reference genome (that consists only of scaffolds without the assignment of scaffolds to any chromosome) and called SNPs. However, in order to answer my research question I now need to align reads (that are now mapped to reference genome scaffolds) to the Zebra Finch genome (as this is the closest complete genome to my study species).

My question is that what the best software (and method) to do this?

Thank you very much for your help in advance

p.s. I am relatively new to bioinformatics!

snp alignment genome

2 answers

Don't map the reads back to the Zebra Finch genome. Use your scaffolds sequences with the Zebra finch genome to combine them using a tool like Mummer, scaffold_builder. There are many more tools, you need to look for "scaffolding a genome to a reference genome".

you can use bowtie2 to align reads to your reference genome

bowtie2 -p 8 -x ZebraFish-genome data.fastq > alignment.sam

with -p as cpu (8) and -x the genome index prefix (ZebraFish-genome)

Log in to answer this question.