-
Notifications
You must be signed in to change notification settings - Fork 64
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
Modified bam results #145
Comments
Map your data on your reference genome using [1] https://github.com/lh3/minimap2 |
But this is an unmapped bam file. How can I map a bam file to reference genome? |
You can go ubam to fastq and carry the meth tags with something like this The magic here is the - T that tells it to carry the MM and ML tags to the fastq, then the -y in Minimap2 tells it to carry them back to the bam. Then you can use modbam2bed and other downstream tools. |
If you do:
you can carry all the tags from the SAM without loss. |
@partha434 we are working on producing aligned BAMs for the next release. Note: you need at least samtools 1.16 (Aug 2022) for |
Thank you so much for the codes. This really worked for me... @Psy-Fer @cjw85 |
v0.3.0 adds the ability to output aligned BAM directly from the basecaller as well as |
Dorado produces basecalls in unmapped bam file. How can I check the modifications from this bam file?
The text was updated successfully, but these errors were encountered: