@datagrok/bio 2.4.51 → 2.4.52

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "name": "Leonid Stolbov",
6
6
  "email": "lstolbov@datagrok.ai"
7
7
  },
8
- "version": "2.4.51",
8
+ "version": "2.4.52",
9
9
  "description": "Bioinformatics support (import/export of sequences, conversion, visualization, analysis). [See more](https://github.com/datagrok-ai/public/blob/master/packages/Bio/README.md) for details.",
10
10
  "repository": {
11
11
  "type": "git",
@@ -39,17 +39,15 @@ category('detectorsBenchmark', () => {
39
39
 
40
40
  test('separatorDnaShorts50Few50', async () => {
41
41
  detectMacromoleculeBenchmark(10, NOTATION.SEPARATOR, ALPHABET.DNA, 50, 50, '/');
42
- }, {skipReason: '#1192'});
42
+ });
43
43
 
44
44
  test('separatorDnaShorts50Many1E6', async () => {
45
- detectMacromoleculeBenchmark(10, NOTATION.SEPARATOR, ALPHABET.DNA, 50, 1E6, '/');
46
- },
47
- { /* skipReason: 'slow transmit large dataset to detector' */});
45
+ detectMacromoleculeBenchmark(10, NOTATION.SEPARATOR, ALPHABET.DNA, 50, 1E6, '/');
46
+ });
48
47
 
49
48
  test('separatorDnaLong1e6Few50', async () => {
50
- detectMacromoleculeBenchmark(10, NOTATION.SEPARATOR, ALPHABET.DNA, 1E6, 50, '/');
51
- },
52
- {skipReason: '#1192'});
49
+ detectMacromoleculeBenchmark(10, NOTATION.SEPARATOR, ALPHABET.DNA, 1E6, 50, '/');
50
+ });
53
51
 
54
52
  async function detectMacromoleculeBenchmark(
55
53
  maxET: number, notation: NOTATION, alphabet: ALPHABET, length: number, count: number, separator?: string,
@@ -128,10 +126,10 @@ category('detectorsBenchmark', () => {
128
126
 
129
127
  function checkDetectorRes(col: DG.Column, tgt: TgtType): void {
130
128
  const uh = UnitsHandler.getOrCreate(col);
131
- expect(col.semType, tgt.semType);
132
- expect(uh.notation, tgt.notation);
133
- expect(uh.alphabet, tgt.alphabet);
134
- expect(uh.separator, tgt.separator);
129
+ expect(col.semType === tgt.semType, true);
130
+ expect(uh.notation === tgt.notation, true);
131
+ expect(uh.alphabet === tgt.alphabet, true);
132
+ expect(uh.separator === tgt.separator, true);
135
133
  }
136
134
  });
137
135