@datagrok/sequence-translator 1.4.6 → 1.4.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/CHANGELOG.md +5 -0
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +1 -1
- package/src/polytool/pt-dialog.ts +4 -1
package/package.json
CHANGED
|
@@ -236,8 +236,11 @@ async function getPolyToolEnumerationChemDialog(cell?: DG.Cell): Promise<DG.Dial
|
|
|
236
236
|
}
|
|
237
237
|
|
|
238
238
|
function dealGroups(col: DG.Column<string>): void {
|
|
239
|
-
for (let i = 0; i < col.length; i++)
|
|
239
|
+
for (let i = 0; i < col.length; i++) {
|
|
240
240
|
col.set(i, col.get(i)!.replaceAll('undefined', 'H'));
|
|
241
|
+
col.set(i, col.get(i)!.replaceAll('Oh', 'O'));
|
|
242
|
+
col.set(i, col.get(i)!.replaceAll('0.000000 3', '0.000000 0'));
|
|
243
|
+
}
|
|
241
244
|
}
|
|
242
245
|
|
|
243
246
|
/** Returns Helm and molfile columns. */
|