Skip to content

Commit ab7b220

Browse files
committed
v3.4.1 BUGFIX : explizit seed
1 parent c9c15e1 commit ab7b220

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

ChangeLog

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,28 @@
1111
################################################################################
1212

1313
# IntaRNA
14-
- BUGFIX : seed order check was buggy
1514

1615
################################################################################
1716
################################################################################
1817

18+
19+
20+
################################################################################
21+
### version 3.4.1
22+
################################################################################
23+
24+
# IntaRNA
25+
- BUGFIX : seed order check was buggy
26+
- BUGFIX : explizit seed : wrong direction of query base pair parsing (thanks to Tim15-tech)
27+
28+
################################################################################
29+
################################################################################
30+
31+
240918 Martin Raden
32+
* IntaRNA/SeedHandlerExplicit :
33+
* SeedData() :
34+
+ BUGFIX : reversal of dotBar2 was missing
35+
1936
240430 Martin Raden
2037
* IntaRNA/PredictorMfeEns :
2138
* updateZ()

src/IntaRNA/SeedHandlerExplicit.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,8 @@ SeedData( const std::string & seedEncoding, const InteractionEnergy & energyFunc
349349
// seed exceeds sequence end
350350
start2 = std::string::npos;
351351
}
352+
// reverse dotBar2
353+
std::reverse(dotBar2.begin(), dotBar2.end());
352354
}
353355
}
354356

0 commit comments

Comments
 (0)