@datagrok/bio 2.21.6 → 2.21.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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Bio changelog
2
2
 
3
+ ## 2.21.8 (2025-05-15)
4
+
5
+ * Correct scrolling header alignment with sequences.
6
+ * Correct detection of max length sequence
7
+ * Better display of current position
8
+
9
+ ## 2.21.7 (2025-05-14)
10
+
11
+ * Enable Header scrolling for non-MSA
12
+
3
13
  ## 2.21.6 (2025-05-14)
4
14
 
5
15
  * Sequence position scrolling header
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
+ }