-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make coverage maps consistent with contigs coverage plot #479
Comments
Now that we've switched the genome coverage plot to use minimap2 in #480, we should be able to use the minimap2 alignment to clip out the gene regions, instead of aligning again with Gotoh. |
This is mostly handled by the fix for #589, but it seems to be failing when a single minimap2 alignment contains a large deletion. |
Also avoid double reporting in nuc.csv.
Reopening, because the current strategy breaks alignments up into too many small pieces.
|
We added the contigs coverage plot as part of #442, but contigs that align to a gene region don't always get included in the coverage maps. The reason is that we align the contig to a seed's full-genome nucleotide sequence for the contigs coverage plot, and we align the translated consensus sequence to a gene region's amino acid sequence for the coverage plots.
Consider using the landmark coordinates and reading frames to choose where to split up the read counts when generating coverage plots.
Consider showing how good the alignment is in the contigs coverage plot, especially when some parts of the contig align well and others don't.
Examples where the two plots are inconsistent:
Update
I added a class,
ConsensusAligner
to track the relationship between the consensus sequence and the reference sequence. This is mostly finished, with some small tasks remaining:The text was updated successfully, but these errors were encountered: