@datagrok/bio 2.1.11 → 2.4.2

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.
Files changed (64) hide show
  1. package/README.md +11 -12
  2. package/css/helm.css +10 -0
  3. package/detectors.js +83 -59
  4. package/dist/package-test.js +2 -68651
  5. package/dist/package-test.js.map +1 -0
  6. package/dist/package.js +2 -66040
  7. package/dist/package.js.map +1 -0
  8. package/dockerfiles/Dockerfile +86 -0
  9. package/files/icons/composition-analysis.svg +17 -0
  10. package/files/icons/sequence-diversity-viewer.svg +4 -0
  11. package/files/icons/sequence-similarity-viewer.svg +4 -0
  12. package/files/icons/vdregions-viewer.svg +22 -0
  13. package/files/icons/weblogo-viewer.svg +7 -0
  14. package/files/tests/testUrl.csv +11 -0
  15. package/files/tests/toAtomicLevelTest.csv +4 -0
  16. package/package.json +29 -32
  17. package/src/analysis/sequence-activity-cliffs.ts +15 -13
  18. package/src/analysis/sequence-diversity-viewer.ts +3 -2
  19. package/src/analysis/sequence-search-base-viewer.ts +4 -2
  20. package/src/analysis/sequence-similarity-viewer.ts +4 -4
  21. package/src/analysis/sequence-space.ts +2 -1
  22. package/src/calculations/monomerLevelMols.ts +6 -6
  23. package/src/package-test.ts +9 -2
  24. package/src/package.ts +230 -145
  25. package/src/substructure-search/substructure-search.ts +25 -22
  26. package/src/tests/Palettes-test.ts +9 -9
  27. package/src/tests/WebLogo-positions-test.ts +131 -68
  28. package/src/tests/_first-tests.ts +9 -0
  29. package/src/tests/activity-cliffs-tests.ts +8 -7
  30. package/src/tests/activity-cliffs-utils.ts +17 -9
  31. package/src/tests/bio-tests.ts +30 -21
  32. package/src/tests/checkInputColumn-tests.ts +17 -17
  33. package/src/tests/converters-test.ts +81 -46
  34. package/src/tests/detectors-benchmark-tests.ts +17 -17
  35. package/src/tests/detectors-tests.ts +190 -178
  36. package/src/tests/fasta-export-tests.ts +2 -3
  37. package/src/tests/monomer-libraries-tests.ts +34 -0
  38. package/src/tests/pepsea-tests.ts +21 -0
  39. package/src/tests/renderers-test.ts +33 -29
  40. package/src/tests/sequence-space-test.ts +6 -4
  41. package/src/tests/similarity-diversity-tests.ts +4 -4
  42. package/src/tests/splitters-test.ts +6 -7
  43. package/src/tests/substructure-filters-tests.ts +23 -1
  44. package/src/tests/utils/sequences-generators.ts +7 -7
  45. package/src/tests/utils.ts +2 -1
  46. package/src/tests/viewers.ts +16 -0
  47. package/src/utils/cell-renderer.ts +116 -54
  48. package/src/utils/constants.ts +7 -6
  49. package/src/utils/convert.ts +17 -11
  50. package/src/utils/monomer-lib.ts +174 -0
  51. package/src/utils/multiple-sequence-alignment.ts +49 -26
  52. package/src/utils/pepsea.ts +78 -0
  53. package/src/utils/save-as-fasta.ts +9 -8
  54. package/src/utils/ui-utils.ts +15 -3
  55. package/src/viewers/vd-regions-viewer.ts +125 -83
  56. package/src/viewers/web-logo-viewer.ts +1031 -0
  57. package/src/widgets/bio-substructure-filter.ts +38 -24
  58. package/tsconfig.json +71 -72
  59. package/webpack.config.js +4 -11
  60. package/dist/vendors-node_modules_datagrok-libraries_ml_src_workers_dimensionality-reducer_js.js +0 -8988
  61. package/jest.config.js +0 -33
  62. package/src/__jest__/remote.test.ts +0 -77
  63. package/src/__jest__/test-node.ts +0 -98
  64. package/test-Bio-91c83d8913ff-bb573307.html +0 -392
package/jest.config.js DELETED
@@ -1,33 +0,0 @@
1
- module.exports = {
2
- 'roots': [
3
- '<rootDir>/src',
4
- ],
5
- 'testMatch': [
6
- '**/__jest__/**/*.test.+(ts|tsx)',
7
- ],
8
- moduleFileExtensions: [
9
- 'ts',
10
- 'js',
11
- ],
12
- 'transform': {
13
- '^.+\\.(ts|tsx)$': 'ts-jest',
14
- },
15
- transformIgnorePatterns: ['^.+\\.js$'],
16
- globals: {
17
- 'ts-jest': {
18
- 'tsconfig': {
19
- 'target': 'es6',
20
- 'module': 'es2020',
21
- },
22
- },
23
- },
24
- reporters: [
25
- 'default',
26
- [
27
- './node_modules/jest-html-reporter',
28
- {
29
- 'includeConsoleLog': true,
30
- },
31
- ],
32
- ],
33
- };
@@ -1,77 +0,0 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
-
5
- import * as utils from './test-node';
6
- import puppeteer from 'puppeteer';
7
-
8
- const P_START_TIMEOUT: number = 3600000;
9
- let browser: puppeteer.Browser;
10
- let page: puppeteer.Page;
11
-
12
- beforeAll(async () => {
13
- const out = await utils.getBrowserPage(puppeteer);
14
- browser = out.browser;
15
- page = out.page;
16
- }, P_START_TIMEOUT);
17
-
18
- afterAll(async () => {
19
- await browser?.close();
20
- });
21
-
22
- expect.extend({
23
- checkOutput(received, expected, context) {
24
- if (received === expected) {
25
- return {
26
- message: () => context,
27
- pass: true
28
- };
29
- } else {
30
- return {
31
- message: () => context,
32
- pass: false
33
- };
34
- }
35
- }
36
- });
37
-
38
- it('TEST', async () => {
39
- const targetPackage: string = process.env.TARGET_PACKAGE ?? 'Bio';
40
- console.log(`Testing ${targetPackage} package`);
41
-
42
- let r = await page.evaluate((targetPackage):Promise<object> => {
43
- return new Promise<object>((resolve, reject) => {
44
- (<any>window).grok.functions.eval(targetPackage + ':test()').then((df: any) => {
45
- const cStatus = df.columns.byName('success');
46
- const cSkipped = df.columns.byName('skipped');
47
- const cMessage = df.columns.byName('result');
48
- const cCat = df.columns.byName('category');
49
- const cName = df.columns.byName('name');
50
- const cTime = df.columns.byName('ms');
51
- let failed = false;
52
- let skipReport = '';
53
- let passReport = '';
54
- let failReport = '';
55
- for (let i = 0; i < df.rowCount; i++) {
56
- if (cStatus.get(i)) {
57
- if (cSkipped.get(i)) {
58
- skipReport += `Test result : Skipped : ${cTime.get(i)} : ${targetPackage}.${cCat.get(i)}.${cName.get(i)} : ${cMessage.get(i)}\n`;
59
- } else {
60
- passReport += `Test result : Success : ${cTime.get(i)} : ${targetPackage}.${cCat.get(i)}.${cName.get(i)} : ${cMessage.get(i)}\n`;
61
- }
62
- } else {
63
- failed = true;
64
- failReport += `Test result : Failed : ${cTime.get(i)} : ${targetPackage}.${cCat.get(i)}.${cName.get(i)} : ${cMessage.get(i)}\n`;
65
- }
66
- }
67
- resolve({failReport, skipReport, passReport, failed});
68
- }).catch((e: any) => reject(e));
69
- });
70
- }, targetPackage);
71
- // @ts-ignore
72
- console.log(r.passReport);
73
- // @ts-ignore
74
- console.log(r.skipReport);
75
- // @ts-ignore
76
- expect(r.failed).checkOutput(false, r.failReport);
77
- }, 7200000);
@@ -1,98 +0,0 @@
1
- import * as path from 'path';
2
- import * as os from 'os';
3
- import * as fs from 'fs';
4
- // @ts-ignore
5
- import * as yaml from 'js-yaml';
6
-
7
- const fetch = require('node-fetch');
8
-
9
- export async function getToken(url: string, key: string) {
10
- const response = await fetch(`${url}/users/login/dev/${key}`, {method: 'POST'});
11
- const json = await response.json();
12
- if (json.isSuccess == true)
13
- return json.token;
14
- else
15
- throw new Error('Unable to login to server. Check your dev key');
16
- }
17
-
18
- export async function getWebUrl(url: string, token: string) {
19
- const response = await fetch(`${url}/admin/plugins/admin/settings`, {headers: {Authorization: token}});
20
- const json = await response.json();
21
- return json.settings.webRoot;
22
- }
23
-
24
- const grokDir = path.join(os.homedir(), '.grok');
25
- const confPath = path.join(grokDir, 'config.yaml');
26
-
27
- function mapURL(conf: Config): Indexable {
28
- const urls: Indexable = {};
29
- for (const server in conf.servers)
30
- urls[conf['servers'][server]['url']] = conf['servers'][server];
31
-
32
- return urls;
33
- }
34
-
35
- export function getDevKey(hostKey: string): { url: string, key: string } {
36
- const config = yaml.load(fs.readFileSync(confPath, 'utf8')) as any;
37
- let host = hostKey == '' ? config.default : hostKey;
38
- host = host.trim();
39
- const urls = mapURL(config);
40
- let key = '';
41
- let url = '';
42
- try {
43
- let url = new URL(host).href;
44
- if (url.endsWith('/')) url = url.slice(0, -1);
45
- if (url in urls) key = config['servers'][urls[url]]['key'];
46
- } catch (error) {
47
- if (config['servers'][host] == null)
48
- throw new Error(`Unknown server alias. Please add it to ${confPath}`);
49
- url = config['servers'][host]['url'];
50
- key = config['servers'][host]['key'];
51
- }
52
- return {url, key};
53
- }
54
-
55
- export async function getBrowserPage(puppeteer: any): Promise<{ browser: any, page: any }> {
56
- let url: string = process.env.HOST ?? '';
57
- const cfg = getDevKey(url);
58
- url = cfg.url;
59
-
60
- const key = cfg.key;
61
- const token = await getToken(url, key);
62
- url = await getWebUrl(url, token);
63
- console.log(`Using web root: ${url}`);
64
-
65
- const browser = await puppeteer.launch({
66
- args: ['--disable-dev-shm-usage', '--disable-features=site-per-process'],
67
- ignoreHTTPSErrors: true,
68
- });
69
-
70
- const page = await browser.newPage();
71
- await page.setDefaultNavigationTimeout(0);
72
- await page.goto(`${url}/oauth/`);
73
- await page.setCookie({name: 'auth', value: token});
74
- await page.evaluate((token: any) => {
75
- window.localStorage.setItem('auth', token);
76
- }, token);
77
- await page.goto(url);
78
- try {
79
- // await page.waitForSelector('.grok-preloader', { timeout: 1800000 });
80
- await page.waitForFunction(() => document.querySelector('.grok-preloader') == null, {timeout: 3600000});
81
- } catch (error) {
82
- throw error;
83
- }
84
- return {browser, page};
85
- }
86
-
87
-
88
- interface Config {
89
- servers: {
90
- [alias: string]: {
91
- url: string,
92
- key: string
93
- }
94
- },
95
- default: string,
96
- }
97
-
98
- interface Indexable {[key: string]: any;}
@@ -1,392 +0,0 @@
1
- <html><head><meta charset="utf-8"/><title>Bio Test Report. Datagrok version datagrok/datagrok:latest SHA=91c83d8913ff. Commit bb573307.</title><style type="text/css">html,
2
- body {
3
- font-family: Arial, Helvetica, sans-serif;
4
- font-size: 1rem;
5
- margin: 0;
6
- padding: 0;
7
- color: #333;
8
- }
9
- body {
10
- padding: 2rem 1rem;
11
- font-size: 0.85rem;
12
- }
13
- #jesthtml-content {
14
- margin: 0 auto;
15
- max-width: 70rem;
16
- }
17
- header {
18
- display: flex;
19
- align-items: center;
20
- }
21
- #title {
22
- margin: 0;
23
- flex-grow: 1;
24
- }
25
- #logo {
26
- height: 4rem;
27
- }
28
- #timestamp {
29
- color: #777;
30
- margin-top: 0.5rem;
31
- }
32
-
33
- /** SUMMARY */
34
- #summary {
35
- color: #333;
36
- margin: 2rem 0;
37
- display: flex;
38
- font-family: monospace;
39
- font-size: 1rem;
40
- }
41
- #summary > div {
42
- margin-right: 2rem;
43
- background: #eee;
44
- padding: 1rem;
45
- min-width: 15rem;
46
- }
47
- #summary > div:last-child {
48
- margin-right: 0;
49
- }
50
- @media only screen and (max-width: 720px) {
51
- #summary {
52
- flex-direction: column;
53
- }
54
- #summary > div {
55
- margin-right: 0;
56
- margin-top: 2rem;
57
- }
58
- #summary > div:first-child {
59
- margin-top: 0;
60
- }
61
- }
62
-
63
- .summary-total {
64
- font-weight: bold;
65
- margin-bottom: 0.5rem;
66
- }
67
- .summary-passed {
68
- color: #4f8a10;
69
- border-left: 0.4rem solid #4f8a10;
70
- padding-left: 0.5rem;
71
- }
72
- .summary-failed,
73
- .summary-obsolete-snapshots {
74
- color: #d8000c;
75
- border-left: 0.4rem solid #d8000c;
76
- padding-left: 0.5rem;
77
- }
78
- .summary-pending {
79
- color: #9f6000;
80
- border-left: 0.4rem solid #9f6000;
81
- padding-left: 0.5rem;
82
- }
83
- .summary-empty {
84
- color: #999;
85
- border-left: 0.4rem solid #999;
86
- }
87
-
88
- .test-result {
89
- padding: 1rem;
90
- margin-bottom: 0.25rem;
91
- }
92
- .test-result:last-child {
93
- border: 0;
94
- }
95
- .test-result.passed {
96
- background-color: #dff2bf;
97
- color: #4f8a10;
98
- }
99
- .test-result.failed {
100
- background-color: #ffbaba;
101
- color: #d8000c;
102
- }
103
- .test-result.pending {
104
- background-color: #ffdf61;
105
- color: #9f6000;
106
- }
107
-
108
- .test-info {
109
- display: flex;
110
- justify-content: space-between;
111
- }
112
- .test-suitename {
113
- width: 20%;
114
- text-align: left;
115
- font-weight: bold;
116
- word-break: break-word;
117
- }
118
- .test-title {
119
- width: 40%;
120
- text-align: left;
121
- font-style: italic;
122
- }
123
- .test-status {
124
- width: 20%;
125
- text-align: right;
126
- }
127
- .test-duration {
128
- width: 10%;
129
- text-align: right;
130
- font-size: 0.75rem;
131
- }
132
-
133
- .failureMessages {
134
- padding: 0 1rem;
135
- margin-top: 1rem;
136
- border-top: 1px dashed #d8000c;
137
- }
138
- .failureMessages.suiteFailure {
139
- border-top: none;
140
- }
141
- .failureMsg {
142
- white-space: pre-wrap;
143
- white-space: -moz-pre-wrap;
144
- white-space: -pre-wrap;
145
- white-space: -o-pre-wrap;
146
- word-wrap: break-word;
147
- }
148
-
149
- .suite-container {
150
- margin-bottom: 2rem;
151
- }
152
- .suite-info {
153
- padding: 1rem;
154
- background-color: #eee;
155
- color: #777;
156
- display: flex;
157
- align-items: center;
158
- margin-bottom: 0.25rem;
159
- }
160
- .suite-info .suite-path {
161
- word-break: break-all;
162
- flex-grow: 1;
163
- font-family: monospace;
164
- font-size: 1rem;
165
- }
166
- .suite-info .suite-time {
167
- margin-left: 0.5rem;
168
- padding: 0.2rem 0.3rem;
169
- font-size: 0.75rem;
170
- }
171
- .suite-info .suite-time.warn {
172
- background-color: #d8000c;
173
- color: #fff;
174
- }
175
-
176
- /* CONSOLE LOGS */
177
- .suite-consolelog {
178
- margin-bottom: 0.25rem;
179
- padding: 1rem;
180
- background-color: #efefef;
181
- }
182
- .suite-consolelog-header {
183
- font-weight: bold;
184
- }
185
- .suite-consolelog-item {
186
- padding: 0.5rem;
187
- }
188
- .suite-consolelog-item pre {
189
- margin: 0.5rem 0;
190
- white-space: pre-wrap;
191
- white-space: -moz-pre-wrap;
192
- white-space: -pre-wrap;
193
- white-space: -o-pre-wrap;
194
- word-wrap: break-word;
195
- }
196
- .suite-consolelog-item-origin {
197
- color: #777;
198
- font-weight: bold;
199
- }
200
- .suite-consolelog-item-message {
201
- color: #000;
202
- font-size: 1rem;
203
- padding: 0 0.5rem;
204
- }
205
-
206
- /* OBSOLETE SNAPSHOTS */
207
- .suite-obsolete-snapshots {
208
- margin-bottom: 0.25rem;
209
- padding: 1rem;
210
- background-color: #ffbaba;
211
- color: #d8000c;
212
- }
213
- .suite-obsolete-snapshots-header {
214
- font-weight: bold;
215
- }
216
- .suite-obsolete-snapshots-item {
217
- padding: 0.5rem;
218
- }
219
- .suite-obsolete-snapshots-item pre {
220
- margin: 0.5rem 0;
221
- white-space: pre-wrap;
222
- white-space: -moz-pre-wrap;
223
- white-space: -pre-wrap;
224
- white-space: -o-pre-wrap;
225
- word-wrap: break-word;
226
- }
227
- .suite-obsolete-snapshots-item-message {
228
- color: #000;
229
- font-size: 1rem;
230
- padding: 0 0.5rem;
231
- }
232
- </style></head><body><div id="jesthtml-content"><header><h1 id="title">Bio Test Report. Datagrok version datagrok/datagrok:latest SHA=91c83d8913ff. Commit bb573307.</h1></header><div id="metadata-container"><div id="timestamp">Started: 2022-11-30 16:25:48</div><div id="summary"><div id="suite-summary"><div class="summary-total">Suites (1)</div><div class="summary-passed">1 passed</div><div class="summary-failed summary-empty">0 failed</div><div class="summary-pending summary-empty">0 pending</div></div><div id="test-summary"><div class="summary-total">Tests (1)</div><div class="summary-passed">1 passed</div><div class="summary-failed summary-empty">0 failed</div><div class="summary-pending summary-empty">0 pending</div></div></div></div><div id="suite-1" class="suite-container"><div class="suite-info"><div class="suite-path">/home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts</div><div class="suite-time warn">49.92s</div></div><div class="suite-tests"><div class="test-result passed"><div class="test-info"><div class="test-suitename"> </div><div class="test-title">TEST</div><div class="test-status">passed</div><div class="test-duration">35.236s</div></div></div></div><div class="suite-consolelog"><div class="suite-consolelog-header">Console Log</div><div class="suite-consolelog-item"><pre class="suite-consolelog-item-origin"> at Object.&lt;anonymous&gt; (/home/runner/work/public/public/packages/Bio/src/__jest__/test-node.ts:63:11)
233
- at Generator.next (&lt;anonymous&gt;)
234
- at fulfilled (/home/runner/work/public/public/packages/Bio/src/__jest__/test-node.ts:28:58)
235
- at processTicksAndRejections (internal/process/task_queues.js:97:5)</pre><pre class="suite-consolelog-item-message">Using web root: http://localhost:8080</pre></div><div class="suite-consolelog-item"><pre class="suite-consolelog-item-origin"> at /home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:40:11
236
- at Generator.next (&lt;anonymous&gt;)
237
- at /home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:34:71
238
- at new Promise (&lt;anonymous&gt;)
239
- at Object.&lt;anonymous&gt;.__awaiter (/home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:30:12)
240
- at Object.&lt;anonymous&gt; (/home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:38:23)
241
- at Promise.then.completed (/home/runner/work/public/public/packages/Bio/node_modules/jest-circus/build/utils.js:391:28)
242
- at new Promise (&lt;anonymous&gt;)</pre><pre class="suite-consolelog-item-message">Testing Bio package</pre></div><div class="suite-consolelog-item"><pre class="suite-consolelog-item-origin"> at /home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:72:11
243
- at Generator.next (&lt;anonymous&gt;)
244
- at fulfilled (/home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:31:58)
245
- at runMicrotasks (&lt;anonymous&gt;)
246
- at processTicksAndRejections (internal/process/task_queues.js:97:5)</pre><pre class="suite-consolelog-item-message">Test result : Success : 1 : Bio.Palettes.testPaletteN : OK
247
- Test result : Success : 1 : Bio.Palettes.testPaletteAA : OK
248
- Test result : Success : 0 : Bio.Palettes.testPalettePtMe : OK
249
- Test result : Success : 228 : Bio.detectors.NegativeEmpty : OK
250
- Test result : Success : 36 : Bio.detectors.Negative1 : OK
251
- Test result : Success : 33 : Bio.detectors.Negative2 : OK
252
- Test result : Success : 38 : Bio.detectors.Negative3 : OK
253
- Test result : Success : 586 : Bio.detectors.NegativeSmiles : OK
254
- Test result : Success : 56 : Bio.detectors.Dna1 : OK
255
- Test result : Success : 28 : Bio.detectors.Rna1 : OK
256
- Test result : Success : 42 : Bio.detectors.AA1 : OK
257
- Test result : Success : 35 : Bio.detectors.MsaDna1 : OK
258
- Test result : Success : 38 : Bio.detectors.MsaAA1 : OK
259
- Test result : Success : 27 : Bio.detectors.SepDna : OK
260
- Test result : Success : 25 : Bio.detectors.SepRna : OK
261
- Test result : Success : 38 : Bio.detectors.SepPt : OK
262
- Test result : Success : 18 : Bio.detectors.SepUn1 : OK
263
- Test result : Success : 17 : Bio.detectors.SepUn2 : OK
264
- Test result : Success : 18 : Bio.detectors.SepMsaN1 : OK
265
- Test result : Success : 674 : Bio.detectors.SamplesFastaCsvPt : OK
266
- Test result : Success : 24 : Bio.detectors.SamplesFastaCsvNegativeEntry : OK
267
- Test result : Success : 21 : Bio.detectors.SamplesFastaCsvNegativeLength : OK
268
- Test result : Success : 56 : Bio.detectors.SamplesFastaCsvNegativeUniProtKB : OK
269
- Test result : Success : 345 : Bio.detectors.SamplesFastaFastaPt : OK
270
- Test result : Success : 1174 : Bio.detectors.samplesPeptidesComplexNegativeID : OK
271
- Test result : Success : 7 : Bio.detectors.SamplesPeptidesComplexNegativeMeasured : OK
272
- Test result : Success : 22 : Bio.detectors.SamplesPeptidesComplexNegativeValue : OK
273
- Test result : Success : 360 : Bio.detectors.samplesMsaComplexUn : OK
274
- Test result : Success : 14 : Bio.detectors.samplesMsaComplexNegativeActivity : OK
275
- Test result : Success : 239 : Bio.detectors.samplesIdCsvNegativeID : OK
276
- Test result : Success : 248 : Bio.detectors.samplesSarSmallCsvNegativeSmiles : OK
277
- Test result : Success : 275 : Bio.detectors.samplesHelmCsvHELM : OK
278
- Test result : Success : 12 : Bio.detectors.samplesHelmCsvNegativeActivity : OK
279
- Test result : Success : 246 : Bio.detectors.samplesTestHelmNegativeID : OK
280
- Test result : Success : 16 : Bio.detectors.samplesTestHelmNegativeTestType : OK
281
- Test result : Success : 18 : Bio.detectors.samplesTestHelmPositiveHelmString : OK
282
- Test result : Success : 6 : Bio.detectors.samplesTestHelmNegativeValid : OK
283
- Test result : Success : 15 : Bio.detectors.samplesTestHelmNegativeMolWeight : OK
284
- Test result : Success : 6 : Bio.detectors.samplesTestHelmNegativeMolFormula : OK
285
- Test result : Success : 18 : Bio.detectors.samplesTestHelmNegativeSmiles : OK
286
- Test result : Success : 966 : Bio.detectors.samplesTestDemogNegativeAll : OK
287
- Test result : Success : 332 : Bio.detectors.samplesTestSmiles2NegativeSmiles : OK
288
- Test result : Success : 138 : Bio.detectors.samplesTestSmilesShortNegativeSmiles : OK
289
- Test result : Success : 166 : Bio.detectors.samplesTestActivityCliffsNegativeSmiles : OK
290
- Test result : Success : 144 : Bio.detectors.samplesFastaPtPosSequence : OK
291
- Test result : Success : 141 : Bio.detectors.samplesTestCerealNegativeCerealName : OK
292
- Test result : Success : 221 : Bio.detectors.samplesTestSpgi100NegativeStereoCategory : OK
293
- Test result : Success : 10 : Bio.detectors.samplesTestSpgi100NegativeScaffoldNames : OK
294
- Test result : Success : 6 : Bio.detectors.samplesTestSpgi100NegativePrimaryScaffoldName : OK
295
- Test result : Success : 6 : Bio.detectors.samplesTestSpgi100NegativeSampleName : OK
296
- Test result : Success : 196 : Bio.detectors.samplesTestUnichemSourcesNegativeSrcUrl : OK
297
- Test result : Success : 5 : Bio.detectors.samplesTestUnichemSourcesNegativeBaseIdUrl : OK
298
- Test result : Success : 183 : Bio.detectors.samplesTestDmvOfficesNegativeOfficeName : OK
299
- Test result : Success : 16 : Bio.detectors.samplesTestDmvOfficesNegativeCity : OK
300
- Test result : Success : 166 : Bio.detectors.samplesTestAlertCollectionNegativeSmarts : OK
301
- Test result : Success : 249 : Bio.detectors.samplesTestSpgiNegativeVals : OK
302
- Test result : Success : 13 : Bio.detectorsBenchmark.separatorDnaShorts50Few50 : OK
303
- Test result : Success : 10007 : Bio.detectorsBenchmark.separatorDnaShorts50Many1E6 : OK
304
- Test result : Success : 1882 : Bio.MSA.isCorrect : OK
305
- Test result : Success : 152 : Bio.MSA.isCorrectLong : OK
306
- Test result : Success : 1316 : Bio.sequenceSpace.sequenceSpaceOpens : OK
307
- Test result : Success : 600 : Bio.sequenceSpace.sequenceSpaceWithEmptyRows : OK
308
- Test result : Success : 921 : Bio.activityCliffs.activityCliffsOpens : OK
309
- Test result : Success : 1014 : Bio.activityCliffs.activityCliffsWithEmptyRows : OK
310
- Test result : Success : 1 : Bio.splitters.fastaMulti : OK
311
- Test result : Success : 1 : Bio.splitters.helm1 : OK
312
- Test result : Success : 1 : Bio.splitters.helm2 : OK
313
- Test result : Success : 0 : Bio.splitters.helm3-multichar : OK
314
- Test result : Success : 0 : Bio.splitters.testHelm1 : OK
315
- Test result : Success : 0 : Bio.splitters.testHelm2 : OK
316
- Test result : Success : 1 : Bio.splitters.testHelm3 : OK
317
- Test result : Success : 393 : Bio.splitters.splitToMonomers : OK
318
- Test result : Success : 2 : Bio.splitters.getHelmMonomers : OK
319
- Test result : Success : 90 : Bio.renderers.long sequence performance : OK
320
- Test result : Success : 665 : Bio.renderers.many sequence performance : OK
321
- Test result : Success : 397 : Bio.renderers.rendererMacromoleculeFasta : OK
322
- Test result : Success : 269 : Bio.renderers.rendererMacromoleculeSeparator : OK
323
- Test result : Success : 100 : Bio.renderers.rendererMacromoleculeDifference : OK
324
- Test result : Success : 560 : Bio.renderers.afterMsa : OK
325
- Test result : Success : 395 : Bio.renderers.afterConvert : OK
326
- Test result : Success : 223 : Bio.renderers.selectRendererBySemType : OK
327
- Test result : Success : 7 : Bio.converters.testFastaPtToSeparator : OK
328
- Test result : Success : 6 : Bio.converters.testFastaDnaToSeparator : OK
329
- Test result : Success : 6 : Bio.converters.testFastaRnaToSeparator : OK
330
- Test result : Success : 7 : Bio.converters.testFastaGapsToSeparator : OK
331
- Test result : Success : 4 : Bio.converters.testFastaPtToHelm : OK
332
- Test result : Success : 3 : Bio.converters.testFastaDnaToHelm : OK
333
- Test result : Success : 3 : Bio.converters.testFastaRnaToHelm : OK
334
- Test result : Success : 3 : Bio.converters.testFastaGapsToHelm : OK
335
- Test result : Success : 1 : Bio.converters.testSeparatorPtToFasta : OK
336
- Test result : Success : 1 : Bio.converters.testSeparatorDnaToFasta : OK
337
- Test result : Success : 1 : Bio.converters.testSeparatorRnaToFasta : OK
338
- Test result : Success : 1 : Bio.converters.testSeparatorGapsToFasta : OK
339
- Test result : Success : 1 : Bio.converters.testSeparatorPtToHelm : OK
340
- Test result : Success : 0 : Bio.converters.testSeparatorDnaToHelm : OK
341
- Test result : Success : 1 : Bio.converters.testSeparatorRnaToHelm : OK
342
- Test result : Success : 0 : Bio.converters.testSeparatorGapsToHelm : OK
343
- Test result : Success : 1 : Bio.converters.testHelmDnaToFasta : OK
344
- Test result : Success : 1 : Bio.converters.testHelmRnaToFasta : OK
345
- Test result : Success : 1 : Bio.converters.testHelmPtToFasta : OK
346
- Test result : Success : 1 : Bio.converters.testHelmDnaToSeparator : OK
347
- Test result : Success : 1 : Bio.converters.testHelmRnaToSeparator : OK
348
- Test result : Success : 1 : Bio.converters.testHelmPtToSeparator : OK
349
- Test result : Success : 4 : Bio.converters.testHelmLoneRibose : OK
350
- Test result : Success : 3 : Bio.converters.testHelmLoneDeoxyribose : OK
351
- Test result : Success : 3 : Bio.converters.testHelmLonePhosphorus : OK
352
- Test result : Success : 1 : Bio.fastaFileHandler.testNormalFormatting : OK
353
- Test result : Success : 0 : Bio.fastaFileHandler.testExtraSpaces : OK
354
- Test result : Success : 0 : Bio.fastaFileHandler.testExtraNewlines : OK
355
- Test result : Success : 1 : Bio.fastaExport.wrapSequenceSingle : OK
356
- Test result : Success : 0 : Bio.fastaExport.wrapSequenceMulti : OK
357
- Test result : Success : 2 : Bio.fastaExport.saveAsFastaTest1 : OK
358
- Test result : Success : 1 : Bio.fastaExport.saveAsFastaTest2 : OK
359
- Test result : Success : 1 : Bio.bio.testGetStatsHelm1 : OK
360
- Test result : Success : 1 : Bio.bio.testGetStatsN1 : OK
361
- Test result : Success : 0 : Bio.bio.testGetAlphabetSimilarity : OK
362
- Test result : Success : 1 : Bio.bio.testPickupPaletteN1 : OK
363
- Test result : Success : 1 : Bio.bio.testPickupPaletteN1e : OK
364
- Test result : Success : 2 : Bio.bio.testPickupPaletteAA1 : OK
365
- Test result : Success : 1 : Bio.bio.testPickupPaletteX : OK
366
- Test result : Success : 0 : Bio.WebLogo.monomerToShort.longMonomerSingle : OK
367
- Test result : Success : 0 : Bio.WebLogo.monomerToShort.longMonomerShort : OK
368
- Test result : Success : 0 : Bio.WebLogo.monomerToShort.longMonomerLong56 : OK
369
- Test result : Success : 0 : Bio.WebLogo.monomerToShort.longMonomerComplexFirstPartShort : OK
370
- Test result : Success : 0 : Bio.WebLogo.monomerToShort.longMonomerComplexFirstPartLong56 : OK
371
- Test result : Success : 154 : Bio.WebLogo-positions.allPositions : OK
372
- Test result : Success : 123 : Bio.WebLogo-positions.positions with shrinkEmptyTail option true (filterd) : OK
373
- Test result : Success : 127 : Bio.WebLogo-positions.positions with skipEmptyPositions option : OK
374
- Test result : Success : 4 : Bio.checkInputColumn.testMsaPos : OK
375
- Test result : Success : 2 : Bio.checkInputColumn.testMsaNegHelm : OK
376
- Test result : Success : 1 : Bio.checkInputColumn.testMsaNegUN : OK
377
- Test result : Success : 0 : Bio.checkInputColumn.testGetActionFunctionMeta : OK
378
- Test result : Success : 476 : Bio.similarity/diversity.similaritySearchViewer : OK
379
- Test result : Success : 350 : Bio.similarity/diversity.diversitySearchViewer : OK
380
- Test result : Success : 257 : Bio.substructureFilters.fasta : OK
381
- Test result : Success : 434 : Bio.substructureFilters.separator : OK
382
- </pre></div><div class="suite-consolelog-item"><pre class="suite-consolelog-item-origin"> at /home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:74:11
383
- at Generator.next (&lt;anonymous&gt;)
384
- at fulfilled (/home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:31:58)
385
- at runMicrotasks (&lt;anonymous&gt;)
386
- at processTicksAndRejections (internal/process/task_queues.js:97:5)</pre><pre class="suite-consolelog-item-message">Test result : Skipped : 0 : Bio.detectorsBenchmark.fastaDnaShorts50Few50 : #1192
387
- Test result : Skipped : 0 : Bio.detectorsBenchmark.fastaDnaShorts50Many1E6 : #1192
388
- Test result : Skipped : 0 : Bio.detectorsBenchmark.fastaDnaLong1e6Few50 : #1192
389
- Test result : Skipped : 0 : Bio.detectorsBenchmark.separatorDnaLong1e6Few50 : #1192
390
- Test result : Skipped : 0 : Bio.renderers.setRendererManually : GROK-11212
391
- Test result : Skipped : 0 : Bio.substructureFilters.helm : #1206
392
- </pre></div></div></div></div></body></html>