Hi,
I have WGS PacBio Long read data of a mouse cell line and a denovo genome assembly was performed by the sequencing center via SMRT link analysis (I don't have much more information as far as programs, parameters etc.). The assembly produced ~3000 contigs. I would like to somehow compare the denovo genome to the GRCm39 reference genome to see where the contigs are mapping to each chromosome. Any thoughts? Thanks in advance!
-Emily
Start by using
minimap2
(LINK) to align the contigs you have to the existing assembly. There are other tools likelastz
(LINK) that can also align large contigs. But usingminimap2/samtools
can allow you to generate BAM format files that you can easily visualize using IGV (LINK).