@@ -558,16 +558,33 @@ \subsection{Aligning short genomic reads}
558558\subsection {Other applications }
559559
560560Minimap2 retains minimap's functionality to find overlaps between long reads
561- and to search against huge multi-species databases such as \emph {nt } from NCBI.
562- Minimap2 can also align similar genomes or different assemblies of the same
563- species. It took 7 wall-clock minutes over 8 CPU cores to align a human SMRT
564- assembly (AC:GCA\_ 001297185.1) to GRCh38, over 20 times as fast as
561+ and to search against large multi-species databases such as \emph {nt } from
562+ NCBI. Minimap2 can also align similar genomes or different assemblies of the
563+ same species. It took 7 wall-clock minutes over 8 CPU cores to align a human
564+ SMRT assembly (AC:GCA\_ 001297185.1) to GRCh38, over 20 times as fast as
565565MUMmer4~\citep {Kurtz:2004zr }.
566566
567- \section {Conclusion }
568-
569- Minimap2 is a fast, accurate and versatile aligner for long nucleotide
570- sequences.
567+ \section {Discussions }
568+
569+ Minimap2 is a versatile mapper and pairwise aligner for nucleotide sequences.
570+ It works with short reads, assembly contigs and long noisy genomic and RNA-seq
571+ reads. It can be used as a read mapper, long-read overlapper or a full-genome
572+ aligner. Minimap2 is also accurate and efficient, often outperforming other
573+ domain-specific alignment tools in terms of both speed and accuracy.
574+
575+ The capability of minimap2 comes from a fast base-level alignment algorithm and
576+ an accurate chaining algorithm. When aligning long query sequences, base-level
577+ alignment is often the performance bottleneck. The Suzuki-Kasahara algorithm
578+ greatly alleviates the bottleneck and enables DP-based splice alignment
579+ involving $ >$ 100kb introns, which was impractically slow ten years ago. The
580+ minimap2 chaining algorithm is fast and highly accurate by itself. In fact,
581+ chaining alone is more accurate than all the other long-read mappers in
582+ Fig.~\ref {fig:eval }a (data not shown). This accuracy helps to reduce downstream
583+ base-level alignment of candidate chains, which is still times slower than
584+ chaining even with the Suzuki-Kasahara improvement. In addition, taking a
585+ general form, minimap2 chaining can be adapted to non-typical data types such
586+ spliced reads and multiple reads per fragment. This gives us the opportunity to
587+ extend the same base algorithm to a variety of use cases.
571588
572589\section* {Acknowledgements }
573590We owe a debt of gratitude to H. Suzuki and M. Kasahara for releasing their
0 commit comments