@datagrok/sequence-translator 0.0.3 → 0.0.6

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.
@@ -0,0 +1,12 @@
1
+ import * as DG from 'datagrok-api/dg';
2
+ import {runTests} from '@datagrok-libraries/utils/src/test';
3
+ import './tests/smiles-tests';
4
+
5
+ export const _package = new DG.Package();
6
+
7
+ //name: test
8
+ //output: dataframe result
9
+ export async function test(): Promise<DG.DataFrame> {
10
+ const data = await runTests();
11
+ return DG.DataFrame.fromObjects(data)!;
12
+ }