Skip to content

Commit f0002ae

Browse files
committed
add minimap2 version possible issue with preset short read
1 parent 03a8016 commit f0002ae

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,13 @@ Hint: As read2tree exploits the `progress` package, the user can benefit from co
163163
To see the details of arguments, please take look at our wiki [page](https://github.com/DessimozLab/read2tree/wiki/Details-of-arguments)
164164

165165
## Possible issues
166+
It seems that minimap2 doesn't have the preset option `-x sr` for short reads in older versions like 2.1. Then, you might get
167+
```
168+
Shell err: b"[E::main] unknown preset 'sr'\n"
169+
```
170+
171+
Updating minimap2 to version 2.30 should fix the issue.
172+
166173

167174
Installing on MAC sometimes drops this error:
168175

@@ -180,8 +187,12 @@ export LANG=en_US.UTF-8
180187

181188
## Change log
182189

190+
- version 2.0.1:
191+
- fixing a few bugs
192+
- version 2.0.0:
193+
- pre-release: improve logging and make minimap2 as default aligner
183194
- version 1.5:
184-
- using minimap2 as the read mapper
195+
- using minimap2 as the read mapper in the minimap2 branch
185196
- version 0.1.5:
186197
- fix issue with UnknownSeq being removed in Biopython>1.80
187198
- removing unused modeltester wrappers

read2tree/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from pkg_resources import resource_string
77
logging.getLogger(__name__).addHandler(logging.NullHandler())
88

9-
__version__ = '2.0.0'
9+
__version__ = '2.0.1'
1010
__copyright__ = 'read2tree (C) 2017-{:d} David Dylus, Adrian M. Altenhoff, Sina Majidian ' \
1111
.format(date.today().year)
1212

0 commit comments

Comments
 (0)