Skip to content

Commit

Permalink
v3.4.1 BUGFIX : explizit seed
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-raden committed Sep 18, 2024
1 parent c9c15e1 commit ab7b220
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 18 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,28 @@
################################################################################

# IntaRNA
- BUGFIX : seed order check was buggy

################################################################################
################################################################################



################################################################################
### version 3.4.1
################################################################################

# IntaRNA
- BUGFIX : seed order check was buggy
- BUGFIX : explizit seed : wrong direction of query base pair parsing (thanks to Tim15-tech)

################################################################################
################################################################################

240918 Martin Raden
* IntaRNA/SeedHandlerExplicit :
* SeedData() :
+ BUGFIX : reversal of dotBar2 was missing

240430 Martin Raden
* IntaRNA/PredictorMfeEns :
* updateZ()
Expand Down
2 changes: 2 additions & 0 deletions src/IntaRNA/SeedHandlerExplicit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,8 @@ SeedData( const std::string & seedEncoding, const InteractionEnergy & energyFunc
// seed exceeds sequence end
start2 = std::string::npos;
}
// reverse dotBar2
std::reverse(dotBar2.begin(), dotBar2.end());
}
}

Expand Down

0 comments on commit ab7b220

Please sign in to comment.