nanoporetech / megalodon

Megalodon is a research command line tool to extract high accuracy modified base and sequence variant calls from raw nanopore reads by anchoring the information rich basecalling neural network output to a reference genome/transriptome.
Other
197 stars 30 forks source link

[Question] Does using Megalodon for just mappings make sense? #237

Closed fidibidi closed 2 years ago

fidibidi commented 2 years ago

Hi All!

Apologies if this is a confusing statement, what I mean moreso:

If I have a project that only needs FAST5s to be mapped to BAM, is it any different to use Megalodon vs just doing

Guppy for basecalling > minimap2 for alignment?

Since, if I'm not mistaken, this is the logic that Megalodon uses?

thanks!

marcus1487 commented 2 years ago

Yes. This is functionally the same thing (save for mismatching versions of guppy inside megalodon version). Note also that guppy can directly produce mappings (though you'll have less control of the minimap2 version there). Either megalodon or guppy can be used for this purpose. This feature was included in megalodon since previous versions of guppy did not support read mapping. I hope this helps, but please comment with any further clarifications.

fidibidi commented 2 years ago

Perfect, Thanks!!!