You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (size_t j=i+1; j<std::min(acc.getMaxLength()+i,acc.getSequence().size());j++) {
33
+
for (size_t j=i+1; j<std::min(acc.getMaxLength()+1+i,acc.getSequence().size());j++) {// "getMaxLength()+1" to allow for dangling-end probability computation
34
34
out <<delimiter <<(acc.getED(i, j)>=0?"":"") <<acc.getED(i, j);
for ( size_t l = maxL+1; l<=getMaxLength(); l++ ) {
103
+
for ( size_t l = maxL+1; l<=std::min(getSequence().size(),getMaxLength()+1); l++ ) {// "getMaxLength()+1" to allow for dangling-end probability computation
for (int l = std::min(j,std::min(pr_size,std::min(max,(int)storageRT.first->getMaxLength()))); l>=1; l--) {
138
+
for (int l = std::min(j,std::min(pr_size,std::min(max,(int)storageRT.first->getMaxLength()+1))); l>=1; l--) {// "getMaxLength()+1" to allow for dangling-end probability computation
138
139
// get unpaired probability
139
140
FLT_OR_DBL prob_unpaired = pr[l];
140
141
// TODO: check for [0,1] range and correct if needed (print WARNING)
0 commit comments