@datagrok/bio 2.25.6 → 2.25.7

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.25.6",
8
+ "version": "2.25.7",
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",
package/src/package.g.ts CHANGED
@@ -276,7 +276,7 @@ export async function moleculesToHelmTopMenu(table: DG.DataFrame, molecules: DG.
276
276
  //name: Molecule to HELM Single
277
277
  //description: Converts a single molecule to HELM notation without requiring a table or column
278
278
  //input: string molecule { semType: Molecule; description: Input molecule }
279
- //output: string result
279
+ //output: string result { semType: Macromolecule; units: helm }
280
280
  export async function moleculeToHelmSingle(molecule: string) : Promise<string> {
281
281
  return await PackageFunctions.moleculeToHelmSingle(molecule);
282
282
  }
package/src/package.ts CHANGED
@@ -642,7 +642,7 @@ export class PackageFunctions {
642
642
  }
643
643
  }
644
644
 
645
- @grok.decorators.func({name: 'Molecule to HELM Single', description: 'Converts a single molecule to HELM notation without requiring a table or column'})
645
+ @grok.decorators.func({name: 'Molecule to HELM Single', description: 'Converts a single molecule to HELM notation without requiring a table or column', outputs: [{name: 'result', type: 'string', options: {semType: 'Macromolecule', units: 'helm'}}]})
646
646
  static async moleculeToHelmSingle(
647
647
  @grok.decorators.param({name: 'molecule', options: {semType: 'Molecule', description: 'Input molecule'}})molecule: string,
648
648
  ): Promise<string> {