@datagrok/bio 2.4.6 → 2.4.8
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
|
@@ -247,8 +247,9 @@ class BioPackageDetectors extends DG.Package {
|
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
checkForbiddenSeparator(separator) {
|
|
250
|
-
//
|
|
251
|
-
|
|
250
|
+
// comma, ampersand, space, underscore, CRLF, CR, LF
|
|
251
|
+
// 2023-04-15: dot is allowed to allow Helm like separator in Helm MSA results (no Helm monomers contains dot)
|
|
252
|
+
const forbiddenSepRe = /,|&| |_|\r\n|\r|\n/i;
|
|
252
253
|
return forbiddenSepRe.test(separator);
|
|
253
254
|
}
|
|
254
255
|
|