@datagrok/bio 2.22.0 → 2.22.1
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 +1 -1
- package/dist/package-test.js +1 -1
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +1 -1
- package/src/analysis/sequence-diversity-viewer.ts +1 -14
- package/src/utils/monomer-lib/library-file-manager/ui.ts +9 -1
- package/test-console-output-1.log +301 -300
- package/test-record-1.mp4 +0 -0
package/detectors.js
CHANGED
|
@@ -172,7 +172,7 @@ class BioPackageDetectors extends DG.Package {
|
|
|
172
172
|
this.sample(col, SEQ_SAMPLE_LIMIT))
|
|
173
173
|
.map((seq) => !!seq ? seq.substring(0, SEQ_SAMPLE_LENGTH_LIMIT * 5) : '')
|
|
174
174
|
.filter((seq) => seq.length !== 0/* skip empty values for detector */),
|
|
175
|
-
)];
|
|
175
|
+
)].map((s) => s?.trim());
|
|
176
176
|
last.categoriesSample = categoriesSample;
|
|
177
177
|
|
|
178
178
|
// To collect alphabet freq three strategies can be used:
|