@datagrok/bio 2.0.27 → 2.0.28
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/dist/package-test.js +114 -61
- package/dist/package.js +112 -59
- package/package.json +2 -2
- package/scripts/admet-run.py +27 -0
- package/src/analysis/sequence-similarity-viewer.ts +1 -2
- package/src/substructure-search/substructure-search.ts +4 -5
- package/src/tests/checkInputColumn-tests.ts +2 -4
- package/test-Bio-49ff04f38f57-8ab13d10.html +385 -0
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"name": "Leonid Stolbov",
|
|
6
6
|
"email": "lstolbov@datagrok.ai"
|
|
7
7
|
},
|
|
8
|
-
"version": "2.0.
|
|
8
|
+
"version": "2.0.28",
|
|
9
9
|
"description": "Bio is a [package](https://datagrok.ai/help/develop/develop#packages) for the [Datagrok](https://datagrok.ai) platform",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@biowasm/aioli": "^3.1.0",
|
|
17
|
-
"@datagrok-libraries/bio": "^5.
|
|
17
|
+
"@datagrok-libraries/bio": "^5.7.0",
|
|
18
18
|
"@datagrok-libraries/chem-meta": "1.0.1",
|
|
19
19
|
"@datagrok-libraries/ml": "^6.2.0",
|
|
20
20
|
"@datagrok-libraries/utils": "^1.11.1",
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#!/usr/bin/env python2
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
"""
|
|
4
|
+
Created on Mon Feb 19 17:30:46 2018
|
|
5
|
+
|
|
6
|
+
@author: cbdd
|
|
7
|
+
"""
|
|
8
|
+
from sklearn.externals import joblib
|
|
9
|
+
import numpy as np
|
|
10
|
+
import pandas as pd
|
|
11
|
+
import os
|
|
12
|
+
|
|
13
|
+
###################################### Load model ##########
|
|
14
|
+
# current_path = os.path.split(os.path.realpath(__file__))[0]
|
|
15
|
+
cf = joblib.load('CYP3A4-substrate.pkl')
|
|
16
|
+
|
|
17
|
+
###################################### Load descriptors ##########
|
|
18
|
+
fingerprint_content = pd.read_csv('des.csv').ix[:, 1:]
|
|
19
|
+
des_list = np.array(fingerprint_content)
|
|
20
|
+
|
|
21
|
+
###################################### Prediction ##########
|
|
22
|
+
y_predict_label = cf.predict(des_list)
|
|
23
|
+
y_predict_proba = cf.predict_proba(des_list)
|
|
24
|
+
print('#' * 10 + 'Results labels' + '#' * 10)
|
|
25
|
+
print(y_predict_label)
|
|
26
|
+
print('#' * 10 + 'Results probabilities' + '#' * 10)
|
|
27
|
+
print(y_predict_proba)
|
|
@@ -8,7 +8,6 @@ import {getMonomericMols} from '../calculations/monomerLevelMols';
|
|
|
8
8
|
import * as C from '../utils/constants';
|
|
9
9
|
import {createDifferenceCanvas, createDifferencesWithPositions} from './sequence-activity-cliffs';
|
|
10
10
|
import {updateDivInnerHTML} from '../utils/ui-utils';
|
|
11
|
-
import {TableView} from 'datagrok-api/dg';
|
|
12
11
|
import {Subject} from 'rxjs';
|
|
13
12
|
|
|
14
13
|
export class SequenceSimilarityViewer extends SequenceSearchBaseViewer {
|
|
@@ -70,7 +69,7 @@ export class SequenceSimilarityViewer extends SequenceSearchBaseViewer {
|
|
|
70
69
|
const targetMolRow = this.idxs?.getRawData().findIndex((it) => it == this.targetMoleculeIdx);
|
|
71
70
|
const targetScoreCell = grid.cell('score', targetMolRow!);
|
|
72
71
|
targetScoreCell.cell.value = null;
|
|
73
|
-
(grok.shell.v as TableView).grid.root.addEventListener('click', (event: MouseEvent) => {
|
|
72
|
+
(grok.shell.v as DG.TableView).grid.root.addEventListener('click', (event: MouseEvent) => {
|
|
74
73
|
this.gridSelect = false;
|
|
75
74
|
});
|
|
76
75
|
updateDivInnerHTML(this.root, grid.root);
|
|
@@ -5,12 +5,11 @@ import * as bio from '@datagrok-libraries/bio';
|
|
|
5
5
|
|
|
6
6
|
import * as C from '../utils/constants';
|
|
7
7
|
import {getMonomericMols} from '../calculations/monomerLevelMols';
|
|
8
|
-
import {BitSet} from 'datagrok-api/dg';
|
|
9
8
|
import {updateDivInnerHTML} from '../utils/ui-utils';
|
|
10
9
|
|
|
11
10
|
export const MONOMER_MOLS_COL = 'monomeric-mols';
|
|
12
11
|
|
|
13
|
-
const enum MONOMERIC_COL_TAGS{
|
|
12
|
+
const enum MONOMERIC_COL_TAGS {
|
|
14
13
|
MONOMERIC_MOLS = 'monomeric-mols',
|
|
15
14
|
LAST_INVALIDATED_VERSION = 'last-invalidated-version',
|
|
16
15
|
MONOMERS_DICT = 'monomers-dict'
|
|
@@ -64,7 +63,7 @@ export function substructureSearchDialog(col: DG.Column): void {
|
|
|
64
63
|
const colExists = col.dataFrame.columns.names()
|
|
65
64
|
.filter((it) => it.toLocaleLowerCase() === matchesColName.toLocaleLowerCase()).length > 0;
|
|
66
65
|
if (!colExists) {
|
|
67
|
-
let matches: BitSet;
|
|
66
|
+
let matches: DG.BitSet;
|
|
68
67
|
if (units === bio.NOTATION.HELM)
|
|
69
68
|
matches = await helmSubstructureSearch(substructure, col);
|
|
70
69
|
else
|
|
@@ -92,13 +91,13 @@ function prepareSubstructureRegex(substructure: string, separator: string) {
|
|
|
92
91
|
const endsWithSep = substructure.charAt(substructure.length - 1) === separator;
|
|
93
92
|
const substrWithoutSep = substructure.replace(new RegExp(`^${char}|${char}$`, 'g'), '');
|
|
94
93
|
const re = startsWithSep ? endsWithSep ? `${char}${substrWithoutSep}${char}` :
|
|
95
|
-
|
|
94
|
+
`${char}${substrWithoutSep}${char}|${char}${substrWithoutSep}$` :
|
|
96
95
|
endsWithSep ? `^${substrWithoutSep}${char}|${char}${substrWithoutSep}${char}` :
|
|
97
96
|
`^${substrWithoutSep}${char}|${char}${substrWithoutSep}${char}|${char}${substrWithoutSep}$`;
|
|
98
97
|
return re;
|
|
99
98
|
}
|
|
100
99
|
|
|
101
|
-
export async function helmSubstructureSearch(substructure: string, col: DG.Column): Promise<BitSet> {
|
|
100
|
+
export async function helmSubstructureSearch(substructure: string, col: DG.Column): Promise<DG.BitSet> {
|
|
102
101
|
if (col.version !== col.temp[MONOMERIC_COL_TAGS.LAST_INVALIDATED_VERSION])
|
|
103
102
|
await invalidateHelmMols(col);
|
|
104
103
|
const substructureCol = DG.Column.string('helm', 1).init((i) => substructure);
|
|
@@ -7,8 +7,6 @@ import * as bio from '@datagrok-libraries/bio';
|
|
|
7
7
|
import {after, before, category, test, expect, expectArray} from '@datagrok-libraries/utils/src/test';
|
|
8
8
|
|
|
9
9
|
import {checkInputColumn, multipleSequenceAlignmentAny} from '../package';
|
|
10
|
-
import {UNITS} from 'datagrok-api/dg';
|
|
11
|
-
import {ALPHABET, NOTATION} from '@datagrok-libraries/bio/src/utils/macromolecule';
|
|
12
10
|
|
|
13
11
|
category('checkInputColumn', () => {
|
|
14
12
|
const csv = `seq
|
|
@@ -41,7 +39,7 @@ seq4`;
|
|
|
41
39
|
const df: DG.DataFrame = DG.DataFrame.fromCsv(csv);
|
|
42
40
|
const col: DG.Column = df.getCol('seq');
|
|
43
41
|
col.semType = DG.SEMTYPE.MACROMOLECULE;
|
|
44
|
-
col.setTag(DG.TAGS.UNITS, NOTATION.HELM);
|
|
42
|
+
col.setTag(DG.TAGS.UNITS, bio.NOTATION.HELM);
|
|
45
43
|
col.setTag(bio.TAGS.alphabetSize, '11');
|
|
46
44
|
col.setTag(bio.TAGS.alphabetIsMultichar, 'true');
|
|
47
45
|
|
|
@@ -56,7 +54,7 @@ seq4`;
|
|
|
56
54
|
const df: DG.DataFrame = DG.DataFrame.fromCsv(csv);
|
|
57
55
|
const col: DG.Column = df.getCol('seq');
|
|
58
56
|
col.semType = DG.SEMTYPE.MACROMOLECULE;
|
|
59
|
-
col.setTag(DG.TAGS.UNITS, NOTATION.FASTA);
|
|
57
|
+
col.setTag(DG.TAGS.UNITS, bio.NOTATION.FASTA);
|
|
60
58
|
col.setTag(bio.TAGS.alphabet, 'UN');
|
|
61
59
|
col.setTag(bio.TAGS.alphabetSize, '11');
|
|
62
60
|
col.setTag(bio.TAGS.alphabetIsMultichar, 'true');
|
|
@@ -0,0 +1,385 @@
|
|
|
1
|
+
<html><head><meta charset="utf-8"/><title>Bio Test Report. Datagrok version datagrok/datagrok:latest SHA=49ff04f38f57. Commit 8ab13d10.</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=49ff04f38f57. Commit 8ab13d10.</h1></header><div id="metadata-container"><div id="timestamp">Started: 2022-10-26 12:18:45</div><div id="summary"><div id="suite-summary"><div class="summary-total">Suites (1)</div><div class="summary-passed summary-empty">0 passed</div><div class="summary-failed">1 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 summary-empty">0 passed</div><div class="summary-failed">1 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">35.829s</div></div><div class="suite-tests"><div class="test-result failed"><div class="test-info"><div class="test-suitename"> </div><div class="test-title">TEST</div><div class="test-status">failed</div><div class="test-duration">25.318s</div></div><div class="failureMessages"> <pre class="failureMsg">Error: Test result : Failed : 1156 : Bio.activityCliffs.activityCliffsOpens : Error: Expected "102 cliffs", got "102 CLIFFS"
|
|
233
|
+
Test result : Failed : 1248 : Bio.activityCliffs.activityCliffsWithEmptyRows : Error: Expected "103 cliffs", got "103 CLIFFS"
|
|
234
|
+
Test result : Failed : 169 : Bio.renderers.setRendererManually : Error: Tag 'cell.renderer' has been manually set to 'MacromoleculeDifference' for column but after df was added as table, tag 'cell.renderer' has reset to 'sequence' instead of manual 'MacromoleculeDifference'.
|
|
235
|
+
|
|
236
|
+
at /home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:70:20
|
|
237
|
+
at Generator.next (<anonymous>)
|
|
238
|
+
at fulfilled (/home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:31:58)
|
|
239
|
+
at runMicrotasks (<anonymous>)
|
|
240
|
+
at processTicksAndRejections (internal/process/task_queues.js:97:5)</pre></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.<anonymous> (/home/runner/work/public/public/packages/Bio/src/__jest__/test-node.ts:63:11)
|
|
241
|
+
at Generator.next (<anonymous>)
|
|
242
|
+
at fulfilled (/home/runner/work/public/public/packages/Bio/src/__jest__/test-node.ts:28:58)
|
|
243
|
+
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
|
|
244
|
+
at Generator.next (<anonymous>)
|
|
245
|
+
at /home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:34:71
|
|
246
|
+
at new Promise (<anonymous>)
|
|
247
|
+
at Object.<anonymous>.__awaiter (/home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:30:12)
|
|
248
|
+
at Object.<anonymous> (/home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:38:23)
|
|
249
|
+
at Promise.then.completed (/home/runner/work/public/public/packages/Bio/node_modules/jest-circus/build/utils.js:391:28)
|
|
250
|
+
at new Promise (<anonymous>)</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:68:11
|
|
251
|
+
at Generator.next (<anonymous>)
|
|
252
|
+
at fulfilled (/home/runner/work/public/public/packages/Bio/src/__jest__/remote.test.ts:31:58)
|
|
253
|
+
at runMicrotasks (<anonymous>)
|
|
254
|
+
at processTicksAndRejections (internal/process/task_queues.js:97:5)</pre><pre class="suite-consolelog-item-message">Test result : Success : 1 : Bio.Palettes.testPaletteN : OK
|
|
255
|
+
Test result : Success : 0 : Bio.Palettes.testPaletteAA : OK
|
|
256
|
+
Test result : Success : 0 : Bio.Palettes.testPalettePtMe : OK
|
|
257
|
+
Test result : Success : 43 : Bio.detectors.NegativeEmpty : OK
|
|
258
|
+
Test result : Success : 10 : Bio.detectors.Negative1 : OK
|
|
259
|
+
Test result : Success : 9 : Bio.detectors.Negative2 : OK
|
|
260
|
+
Test result : Success : 13 : Bio.detectors.Negative3 : OK
|
|
261
|
+
Test result : Success : 37 : Bio.detectors.NegativeSmiles : OK
|
|
262
|
+
Test result : Success : 21 : Bio.detectors.Dna1 : OK
|
|
263
|
+
Test result : Success : 14 : Bio.detectors.Rna1 : OK
|
|
264
|
+
Test result : Success : 8 : Bio.detectors.AA1 : OK
|
|
265
|
+
Test result : Success : 7 : Bio.detectors.MsaDna1 : OK
|
|
266
|
+
Test result : Success : 7 : Bio.detectors.MsaAA1 : OK
|
|
267
|
+
Test result : Success : 7 : Bio.detectors.SepDna : OK
|
|
268
|
+
Test result : Success : 13 : Bio.detectors.SepRna : OK
|
|
269
|
+
Test result : Success : 9 : Bio.detectors.SepPt : OK
|
|
270
|
+
Test result : Success : 14 : Bio.detectors.SepUn1 : OK
|
|
271
|
+
Test result : Success : 7 : Bio.detectors.SepUn2 : OK
|
|
272
|
+
Test result : Success : 6 : Bio.detectors.SepMsaN1 : OK
|
|
273
|
+
Test result : Success : 493 : Bio.detectors.SamplesFastaCsvPt : OK
|
|
274
|
+
Test result : Success : 7 : Bio.detectors.SamplesFastaCsvNegativeEntry : OK
|
|
275
|
+
Test result : Success : 5 : Bio.detectors.SamplesFastaCsvNegativeLength : OK
|
|
276
|
+
Test result : Success : 34 : Bio.detectors.SamplesFastaCsvNegativeUniProtKB : OK
|
|
277
|
+
Test result : Success : 844 : Bio.detectors.SamplesFastaFastaPt : OK
|
|
278
|
+
Test result : Success : 497 : Bio.detectors.samplesPeptidesComplexNegativeID : OK
|
|
279
|
+
Test result : Success : 19 : Bio.detectors.SamplesPeptidesComplexNegativeMeasured : OK
|
|
280
|
+
Test result : Success : 68 : Bio.detectors.SamplesPeptidesComplexNegativeValue : OK
|
|
281
|
+
Test result : Success : 204 : Bio.detectors.samplesMsaComplexUn : OK
|
|
282
|
+
Test result : Success : 25 : Bio.detectors.samplesMsaComplexNegativeActivity : OK
|
|
283
|
+
Test result : Success : 645 : Bio.detectors.samplesIdCsvNegativeID : OK
|
|
284
|
+
Test result : Success : 399 : Bio.detectors.samplesSarSmallCsvNegativeSmiles : OK
|
|
285
|
+
Test result : Success : 127 : Bio.detectors.samplesHelmCsvHELM : OK
|
|
286
|
+
Test result : Success : 8 : Bio.detectors.samplesHelmCsvNegativeActivity : OK
|
|
287
|
+
Test result : Success : 110 : Bio.detectors.samplesTestHelmNegativeID : OK
|
|
288
|
+
Test result : Success : 18 : Bio.detectors.samplesTestHelmNegativeTestType : OK
|
|
289
|
+
Test result : Success : 11 : Bio.detectors.samplesTestHelmPositiveHelmString : OK
|
|
290
|
+
Test result : Success : 15 : Bio.detectors.samplesTestHelmNegativeValid : OK
|
|
291
|
+
Test result : Success : 22 : Bio.detectors.samplesTestHelmNegativeMolWeight : OK
|
|
292
|
+
Test result : Success : 5 : Bio.detectors.samplesTestHelmNegativeMolFormula : OK
|
|
293
|
+
Test result : Success : 13 : Bio.detectors.samplesTestHelmNegativeSmiles : OK
|
|
294
|
+
Test result : Success : 1002 : Bio.detectors.samplesTestDemogNegativeAll : OK
|
|
295
|
+
Test result : Success : 321 : Bio.detectors.samplesTestSmiles2NegativeSmiles : OK
|
|
296
|
+
Test result : Success : 127 : Bio.detectors.samplesTestActivityCliffsNegativeSmiles : OK
|
|
297
|
+
Test result : Success : 130 : Bio.detectors.samplesFastaPtPosSequence : OK
|
|
298
|
+
Test result : Success : 130 : Bio.detectors.samplesTestCerealNegativeCerealName : OK
|
|
299
|
+
Test result : Success : 217 : Bio.detectors.samplesTestSpgi100NegativeStereoCategory : OK
|
|
300
|
+
Test result : Success : 12 : Bio.detectors.samplesTestSpgi100NegativeScaffoldNames : OK
|
|
301
|
+
Test result : Success : 5 : Bio.detectors.samplesTestSpgi100NegativePrimaryScaffoldName : OK
|
|
302
|
+
Test result : Success : 5 : Bio.detectors.samplesTestSpgi100NegativeSampleName : OK
|
|
303
|
+
Test result : Success : 187 : Bio.detectors.samplesTestUnichemSourcesNegativeSrcUrl : OK
|
|
304
|
+
Test result : Success : 15 : Bio.detectors.samplesTestUnichemSourcesNegativeBaseIdUrl : OK
|
|
305
|
+
Test result : Success : 135 : Bio.detectors.samplesTestDmvOfficesNegativeOfficeName : OK
|
|
306
|
+
Test result : Success : 6 : Bio.detectors.samplesTestDmvOfficesNegativeCity : OK
|
|
307
|
+
Test result : Success : 196 : Bio.detectors.samplesTestAlertCollectionNegativeSmarts : OK
|
|
308
|
+
Test result : Success : 918 : Bio.MSA.isCorrect : OK
|
|
309
|
+
Test result : Success : 154 : Bio.MSA.isCorrectLong : OK
|
|
310
|
+
Test result : Success : 1241 : Bio.sequenceSpace.sequenceSpaceOpens : OK
|
|
311
|
+
Test result : Success : 5367 : Bio.sequenceSpace.sequenceSpaceWithEmptyRows : OK
|
|
312
|
+
Test result : Success : 1 : Bio.splitters.fastaMulti : OK
|
|
313
|
+
Test result : Success : 1 : Bio.splitters.helm1 : OK
|
|
314
|
+
Test result : Success : 1 : Bio.splitters.helm2 : OK
|
|
315
|
+
Test result : Success : 1 : Bio.splitters.helm3-multichar : OK
|
|
316
|
+
Test result : Success : 0 : Bio.splitters.testHelm1 : OK
|
|
317
|
+
Test result : Success : 1 : Bio.splitters.testHelm2 : OK
|
|
318
|
+
Test result : Success : 0 : Bio.splitters.testHelm3 : OK
|
|
319
|
+
Test result : Success : 349 : Bio.splitters.splitToMonomers : OK
|
|
320
|
+
Test result : Success : 2 : Bio.splitters.getHelmMonomers : OK
|
|
321
|
+
Test result : Success : 86 : Bio.renderers.long sequence performance : OK
|
|
322
|
+
Test result : Success : 728 : Bio.renderers.many sequence performance : OK
|
|
323
|
+
Test result : Success : 389 : Bio.renderers.rendererMacromoleculeFasta : OK
|
|
324
|
+
Test result : Success : 198 : Bio.renderers.rendererMacromoleculeSeparator : OK
|
|
325
|
+
Test result : Success : 92 : Bio.renderers.rendererMacromoleculeDifference : OK
|
|
326
|
+
Test result : Success : 417 : Bio.renderers.afterMsa : OK
|
|
327
|
+
Test result : Success : 224 : Bio.renderers.afterConvert : OK
|
|
328
|
+
Test result : Success : 167 : Bio.renderers.selectRendererBySemType : OK
|
|
329
|
+
Test result : Success : 4 : Bio.converters.testFastaPtToSeparator : OK
|
|
330
|
+
Test result : Success : 3 : Bio.converters.testFastaDnaToSeparator : OK
|
|
331
|
+
Test result : Success : 3 : Bio.converters.testFastaRnaToSeparator : OK
|
|
332
|
+
Test result : Success : 3 : Bio.converters.testFastaGapsToSeparator : OK
|
|
333
|
+
Test result : Success : 2 : Bio.converters.testFastaPtToHelm : OK
|
|
334
|
+
Test result : Success : 8 : Bio.converters.testFastaDnaToHelm : OK
|
|
335
|
+
Test result : Success : 2 : Bio.converters.testFastaRnaToHelm : OK
|
|
336
|
+
Test result : Success : 2 : Bio.converters.testFastaGapsToHelm : OK
|
|
337
|
+
Test result : Success : 1 : Bio.converters.testSeparatorPtToFasta : OK
|
|
338
|
+
Test result : Success : 1 : Bio.converters.testSeparatorDnaToFasta : OK
|
|
339
|
+
Test result : Success : 0 : Bio.converters.testSeparatorRnaToFasta : OK
|
|
340
|
+
Test result : Success : 1 : Bio.converters.testSeparatorGapsToFasta : OK
|
|
341
|
+
Test result : Success : 1 : Bio.converters.testSeparatorPtToHelm : OK
|
|
342
|
+
Test result : Success : 0 : Bio.converters.testSeparatorDnaToHelm : OK
|
|
343
|
+
Test result : Success : 1 : Bio.converters.testSeparatorRnaToHelm : OK
|
|
344
|
+
Test result : Success : 1 : Bio.converters.testSeparatorGapsToHelm : OK
|
|
345
|
+
Test result : Success : 1 : Bio.converters.testHelmDnaToFasta : OK
|
|
346
|
+
Test result : Success : 0 : Bio.converters.testHelmRnaToFasta : OK
|
|
347
|
+
Test result : Success : 0 : Bio.converters.testHelmPtToFasta : OK
|
|
348
|
+
Test result : Success : 0 : Bio.converters.testHelmDnaToSeparator : OK
|
|
349
|
+
Test result : Success : 0 : Bio.converters.testHelmRnaToSeparator : OK
|
|
350
|
+
Test result : Success : 1 : Bio.converters.testHelmPtToSeparator : OK
|
|
351
|
+
Test result : Success : 2 : Bio.converters.testHelmLoneRibose : OK
|
|
352
|
+
Test result : Success : 2 : Bio.converters.testHelmLoneDeoxyribose : OK
|
|
353
|
+
Test result : Success : 2 : Bio.converters.testHelmLonePhosphorus : OK
|
|
354
|
+
Test result : Success : 0 : Bio.fastaFileHandler.testNormalFormatting : OK
|
|
355
|
+
Test result : Success : 1 : Bio.fastaFileHandler.testExtraSpaces : OK
|
|
356
|
+
Test result : Success : 0 : Bio.fastaFileHandler.testExtraNewlines : OK
|
|
357
|
+
Test result : Success : 1 : Bio.fastaExport.wrapSequenceSingle : OK
|
|
358
|
+
Test result : Success : 0 : Bio.fastaExport.wrapSequenceMulti : OK
|
|
359
|
+
Test result : Success : 2 : Bio.fastaExport.saveAsFastaTest1 : OK
|
|
360
|
+
Test result : Success : 2 : Bio.fastaExport.saveAsFastaTest2 : OK
|
|
361
|
+
Test result : Success : 1 : Bio.bio.testGetStatsHelm1 : OK
|
|
362
|
+
Test result : Success : 2 : Bio.bio.testGetStatsN1 : OK
|
|
363
|
+
Test result : Success : 0 : Bio.bio.testGetAlphabetSimilarity : OK
|
|
364
|
+
Test result : Success : 2 : Bio.bio.testPickupPaletteN1 : OK
|
|
365
|
+
Test result : Success : 1 : Bio.bio.testPickupPaletteN1e : OK
|
|
366
|
+
Test result : Success : 1 : Bio.bio.testPickupPaletteAA1 : OK
|
|
367
|
+
Test result : Success : 2 : Bio.bio.testPickupPaletteX : OK
|
|
368
|
+
Test result : Success : 1 : Bio.WebLogo.monomerToShort.longMonomerSingle : OK
|
|
369
|
+
Test result : Success : 0 : Bio.WebLogo.monomerToShort.longMonomerShort : OK
|
|
370
|
+
Test result : Success : 0 : Bio.WebLogo.monomerToShort.longMonomerLong56 : OK
|
|
371
|
+
Test result : Success : 1 : Bio.WebLogo.monomerToShort.longMonomerComplexFirstPartShort : OK
|
|
372
|
+
Test result : Success : 0 : Bio.WebLogo.monomerToShort.longMonomerComplexFirstPartLong56 : OK
|
|
373
|
+
Test result : Success : 81 : Bio.WebLogo-positions.allPositions : OK
|
|
374
|
+
Test result : Success : 84 : Bio.WebLogo-positions.positions with shrinkEmptyTail option true (filterd) : OK
|
|
375
|
+
Test result : Success : 75 : Bio.WebLogo-positions.positions with skipEmptyPositions option : OK
|
|
376
|
+
Test result : Success : 2 : Bio.checkInputColumn.testMsaPos : OK
|
|
377
|
+
Test result : Success : 0 : Bio.checkInputColumn.testMsaNegHelm : OK
|
|
378
|
+
Test result : Success : 10 : Bio.checkInputColumn.testMsaNegUN : OK
|
|
379
|
+
Test result : Success : 1 : Bio.checkInputColumn.testGetActionFunctionMeta : OK
|
|
380
|
+
Test result : Success : 790 : Bio.similarity/diversity.similaritySearchViewer : OK
|
|
381
|
+
Test result : Success : 370 : Bio.similarity/diversity.diversitySearchViewer : OK
|
|
382
|
+
Test result : Success : 197 : Bio.substructureFilters.fasta : OK
|
|
383
|
+
Test result : Success : 396 : Bio.substructureFilters.separator : OK
|
|
384
|
+
Test result : Success : 1269 : Bio.substructureFilters.helm : OK
|
|
385
|
+
</pre></div></div></div></div></body></html>
|