@datagrok/bio 2.0.10 → 2.0.11
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 +4 -4
- package/dist/package.js +2 -2
- package/package.json +1 -1
- package/src/tests/renderers-test.ts +2 -2
- package/src/utils/utils.ts +1 -1
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.11",
|
|
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",
|
|
@@ -80,7 +80,7 @@ category('renderers', () => {
|
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
async function _rendererMacromoleculeSeparator() {
|
|
83
|
-
const csv: string = await grok.dapi.files.readAsText('System:AppData/Bio/
|
|
83
|
+
const csv: string = await grok.dapi.files.readAsText('System:AppData/Bio/data/sample_SEPARATOR_PT.csv');
|
|
84
84
|
const df: DG.DataFrame = DG.DataFrame.fromCsv(csv);
|
|
85
85
|
|
|
86
86
|
const seqCol = df.getCol('sequence');
|
|
@@ -159,7 +159,7 @@ category('renderers', () => {
|
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
async function _testAfterConvert() {
|
|
162
|
-
const csv: string = await grok.dapi.files.readAsText('System:AppData/Bio/
|
|
162
|
+
const csv: string = await grok.dapi.files.readAsText('System:AppData/Bio/data/sample_FASTA_PT.csv');
|
|
163
163
|
const df: DG.DataFrame = DG.DataFrame.fromCsv(csv);
|
|
164
164
|
|
|
165
165
|
const srcCol: DG.Column = df.col('sequence')!;
|
package/src/utils/utils.ts
CHANGED
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
} from '../const';
|
|
8
8
|
import {UnitsHandler} from '@datagrok-libraries/bio/src/utils/units-handler';
|
|
9
9
|
|
|
10
|
-
export const HELM_CORE_LIB_FILENAME = '/
|
|
10
|
+
export const HELM_CORE_LIB_FILENAME = '/data/HELMCoreLibrary.json';
|
|
11
11
|
export const HELM_CORE_LIB_MONOMER_SYMBOL = 'symbol';
|
|
12
12
|
export const HELM_CORE_LIB_MOLFILE = 'molfile';
|
|
13
13
|
export const HELM_CORE_FIELDS = ['symbol', 'molfile', 'rgroups', 'name'];
|