@datagrok/bio 2.21.6 → 2.21.7
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/CHANGELOG.md +4 -0
- package/detectors.js +4 -2
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +1 -1
- package/src/widgets/sequence-scrolling-widget.ts +4 -4
- package/test-console-output-1.log +302 -304
- package/test-record-1.mp4 +0 -0
package/CHANGELOG.md
CHANGED
package/detectors.js
CHANGED
|
@@ -90,7 +90,9 @@ class BioPackageDetectors extends DG.Package {
|
|
|
90
90
|
/** Parts of the column name required in the column's name under the detector. It must be in lowercase. */
|
|
91
91
|
likelyColNamePartList = ['seq', 'msa', 'dna', 'rna', 'fasta', 'helm', 'sense', 'protein', 'pep', 'enumerated'];
|
|
92
92
|
|
|
93
|
-
veryLikelyColNamePartList = ['peptide', 'oligo', 'sequence', 'enumerated'
|
|
93
|
+
veryLikelyColNamePartList = ['peptide', 'oligo', 'sequence', 'enumerated',
|
|
94
|
+
'heavy_chain', 'light_chain', 'heay-chain', 'light-chain', 'heavychain', 'lightchain',
|
|
95
|
+
'heavy chain', 'light chain'];
|
|
94
96
|
|
|
95
97
|
peptideFastaAlphabet = new Set([
|
|
96
98
|
'G', 'L', 'Y', 'S', 'E', 'Q', 'D', 'N', 'F', 'A',
|
|
@@ -624,4 +626,4 @@ class BioPackageDetectors extends DG.Package {
|
|
|
624
626
|
}
|
|
625
627
|
});
|
|
626
628
|
}
|
|
627
|
-
}
|
|
629
|
+
}
|