@@ -21,7 +21,7 @@ cd minimap2 && make
2121./minimap2 -ax splice -uf -k14 ref.fa reads.fa > aln.sam # noisy Nanopore direct RNA-seq
2222./minimap2 -ax splice:hq -uf ref.fa query.fa > aln.sam # PacBio Kinnex/Iso-seq (RNA-seq)
2323./minimap2 -ax splice --junc-bed=anno.bed12 ref.fa query.fa > aln.sam # use annotated junctions
24- ./minimap2 -ax splice:sr ref.fa r1.fq r2.fq > aln.sam # short-read RNA-seq (r1236+; experimental )
24+ ./minimap2 -ax splice:sr ref.fa r1.fq r2.fq > aln.sam # short-read RNA-seq (v2.29+ )
2525./minimap2 -ax splice:sr -j anno.bed12 ref.fa r1.fq r2.fq > aln.sam
2626./minimap2 -cx asm5 asm1.fa asm2.fa > aln.paf # intra-species asm-to-asm alignment
2727./minimap2 -x ava-pb reads.fa reads.fa > overlaps.paf # PacBio read overlap
@@ -41,7 +41,7 @@ man ./minimap2.1
4141 - [ Map long mRNA/cDNA reads] ( #map-long-splice )
4242 - [ Find overlaps between long reads] ( #long-overlap )
4343 - [ Map short genomic reads] ( #short-genomic )
44- - [ Map short RNA-seq reads (experimental & evolving) ] ( #short-rna-seq )
44+ - [ Map short RNA-seq reads] ( #short-rna-seq )
4545 - [ Full genome/assembly alignment] ( #full-genome )
4646 - [ Advanced features] ( #advanced )
4747 - [ Working with >65535 CIGAR operations] ( #long-cigar )
@@ -77,8 +77,8 @@ Detailed evaluations are available from the [minimap2 paper][doi] or the
7777Minimap2 is optimized for x86-64 CPUs. You can acquire precompiled binaries from
7878the [ release page] [ release ] with:
7979``` sh
80- curl -L https://github.com/lh3/minimap2/releases/download/v2.28 /minimap2-2.28_x64 -linux.tar.bz2 | tar -jxvf -
81- ./minimap2-2.28_x64 -linux/minimap2
80+ curl -L https://github.com/lh3/minimap2/releases/download/v2.29 /minimap2-2.29_x64 -linux.tar.bz2 | tar -jxvf -
81+ ./minimap2-2.29_x64 -linux/minimap2
8282```
8383If you want to compile from the source, you need to have a C compiler, GNU make
8484and zlib development files installed. Then type ` make ` in the source code
@@ -235,7 +235,7 @@ be paired if they are adjacent in the input stream and have the same name (with
235235the ` /[0-9] ` suffix trimmed if present). Single- and paired-end reads can be
236236mixed.
237237
238- #### <a name =" short-rna-seq " ></a >Map short RNA-seq reads (experimental & evolving)
238+ #### <a name =" short-rna-seq " ></a >Map short RNA-seq reads
239239
240240``` sh
241241minimap2 -ax splice:sr ref.fa reads-se.fq.gz > aln.sam # single-end
@@ -245,10 +245,8 @@ minimap2 -ax splice:sr -j anno.bed ref.fa r1.fq r2.fq > aln.sam # use annotatio
245245minimap2 -x splice:sr -j anno.bed --write-junc ref.fa r1.fq r2.fq > junc.bed
246246minimap2 -ax splice:sr -j anno.bed --pass1=junc.bed ref.fa r1.fq r2.fq > aln.sam
247247```
248- The new preset ` splice:sr ` was added between v2.28 and v2.29. It functions
249- similarly to ` sr ` except that it performs spliced alignment. Note that this
250- functionality is *** experiemental*** and evolving. It is better not to use it
251- for production.
248+ The new preset ` splice:sr ` was added in v2.29. It functions similarly to ` sr `
249+ except that it performs spliced alignment.
252250
253251#### <a name =" full-genome " ></a >Full genome/assembly alignment
254252
0 commit comments