@datagrok/bio 1.6.0 → 1.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/detectors.js CHANGED
@@ -172,7 +172,7 @@ class BioPackageDetectors extends DG.Package {
172
172
  * @param freq frequencies of monomers in sequence set
173
173
  * @param candidates an array of pairs [name, monomer set]
174
174
  * */
175
- static detectAlphabet(freq, candidates, gapSymbol, cut = 0.65) {
175
+ static detectAlphabet(freq, candidates, gapSymbol, cut = 0.55) {
176
176
  const candidatesSims = candidates.map((c) => {
177
177
  const sim = BioPackageDetectors.getAlphabetSimilarity(freq, c[1], gapSymbol);
178
178
  return [c[0], c[1], freq, sim];