@datagrok/bio 2.27.9 → 2.27.10

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": "Davit Rizhinashvili",
6
6
  "email": "drizhinashvili@datagrok.ai"
7
7
  },
8
- "version": "2.27.9",
8
+ "version": "2.27.10",
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",
@@ -95,9 +95,14 @@ export async function sirnaDemo() {
95
95
  const df = await _package.files.readCsv('demo-files/SIRNA.csv');
96
96
  const layoutTXT = await _package.files.readAsText('demo-files/SIRNA.layout');
97
97
  const layout = DG.ViewLayout.fromJson(layoutTXT);
98
+ df.col('sense_seq')!.setTag('aligned', 'SEQ.MSA');
99
+ df.col('antisense_seq')!.setTag('aligned', 'SEQ.MSA');
98
100
  const tv = grok.shell.addTableView(df);
99
101
  await DG.delay(100);
100
102
  tv.loadLayout(layout, true);
101
103
  await df.meta.detectSemanticTypes();
102
104
  grok.shell.info('Hover over the oligo structrues to see modifications to different sugars, linkers and residues.', {timeout: 10});
105
+ setTimeout(() => {
106
+ df.currentCell = df.cell(0, 'oligo_helm');
107
+ }, 300);
103
108
  }