Skip to content

Commit

Permalink
docu
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-raden committed May 3, 2024
1 parent 3c98c3c commit c76616a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
################################################################################
################################################################################

240430 Martin Raden
* IntaRNA/PredictorMfeEns :
* updateZ()
* BUGFIX : no handling of partial Z including ED values (so far not used)

240429 Martin Raden
* IntaRNA/Interaction
* Seed::operator"<"
Expand All @@ -28,9 +33,6 @@
* IntaRNA/SeedHandler :
* addSeeds()
* BUGFIX : if internal seed base pairs were not found seed was still added
* IntaRNA/PredictorMfeEns :
* updateZ()
* BUGFIX : no handling of partial Z including ED values (so far not used)

################################################################################
### version 3.4.0
Expand Down
8 changes: 4 additions & 4 deletions src/IntaRNA/PredictorMfeEns2dSeedExtension.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@ predict( const IndexRange & r1, const IndexRange & r2 )
for (size_t l2 = 0; l2< hybridZ_left.size2(); l2++) {
// check complementarity of boundary
if ( Z_equal(hybridZ_left(l1,l2), 0.0) ) continue;
// ensure max interaction length in seq 1
// iterate extension right of seed in seq 1
for (size_t r1 = 0; r1 < hybridZ_right.size1() ; r1++) {
// check interaction length
// ensure max interaction length in seq 1
if (sj1+r1-si1+l1 >= energy.getAccessibility1().getMaxLength()) break;
// ensure max interaction length in seq 2
// iterate extension right of seed in seq 2
for (size_t r2 = 0; r2 < hybridZ_right.size2() ; r2++) {
// check interaction length
// ensure max interaction length in seq 2
if (sj2+r2-si2+l2 >= energy.getAccessibility2().getMaxLength()) break;
// check complementarity of boundary
if (Z_equal(hybridZ_right(r1,r2),0.0)) continue;
Expand Down

0 comments on commit c76616a

Please sign in to comment.