Skip to content

Commit 5908477

Browse files
authored
Merge pull request #59 from jaebeom-kim/master
Fixed a bug occuring with sequences containing lowercased bases.
2 parents b4dc901 + 6b63b4a commit 5908477

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Presentation video from ISMB/ECCB 2023: [link](https://www.youtube.com/watch?v=v
1313

1414
## Update in v1.0.4
1515
- Fixed a minor reproducibility issue.
16+
- Fixed a bug occuring with sequences containing lowercased bases.
1617
- Auto adjustment of `--match-per-kmer` parameter. Issue #20 solved.
1718
- Record version info. in `db.parameter`
1819

src/commons/SeqIterator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "SeqIterator.h"
22

33
const string SeqIterator::atcg = "................................................................"
4-
".AGCG..GT..G.CN...ACTG.A.T......agcg..gt..g.cn...actg.a.t......."
4+
".AGCG..GT..G.CN...ACTG.A.T.......agcg..gt..g.cn...actg.a.t......"
55
"................................................................"
66
"................................................................";
77

0 commit comments

Comments
 (0)