From 16d826132b0b3f986d90e95a3302dfd1529b1684 Mon Sep 17 00:00:00 2001 From: Marcus Fedarko Date: Fri, 17 May 2024 21:03:24 -0700 Subject: [PATCH 1/2] Mention approx CIGAR strings in man page #724 --- minimap2.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minimap2.1 b/minimap2.1 index 9e15ccdd..f8abbc7a 100644 --- a/minimap2.1 +++ b/minimap2.1 @@ -742,7 +742,7 @@ s2 i Chaining score of the best secondary chain NM i Total number of mismatches and gaps in the alignment MD Z To generate the ref sequence in the alignment AS i DP alignment score -SA Z List of other supplementary alignments +SA Z List of other supplementary alignments (with approximate CIGAR strings) ms i DP score of the max scoring segment in the alignment nn i Number of ambiguous bases in the alignment ts A Transcript strand (splice mode only) From fb59ab96b77866cf79ec36e17c796aad3379bba7 Mon Sep 17 00:00:00 2001 From: Marcus Fedarko Date: Fri, 17 May 2024 21:15:22 -0700 Subject: [PATCH 2/2] Fix FAQ typo --- FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index 94a1bbce..d2ce9da3 100644 --- a/FAQ.md +++ b/FAQ.md @@ -2,7 +2,7 @@ Without `-a`, `-c` or `--cs`, minimap2 only finds *approximate* mapping locations without detailed base alignment. In particular, the start and end -positions of the alignment are impricise. With one of those options, minimap2 +positions of the alignment are imprecise. With one of those options, minimap2 will perform base alignment, which is generally more accurate but is much slower.