@datagrok/sequence-translator 1.2.5 → 1.2.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@datagrok/sequence-translator",
3
3
  "friendlyName": "Sequence Translator",
4
- "version": "1.2.5",
4
+ "version": "1.2.6",
5
5
  "author": {
6
6
  "name": "Alexey Choposky",
7
7
  "email": "achopovsky@datagrok.ai"
@@ -18,7 +18,7 @@ export function getNucleotidesMol(codes: string[]) {
18
18
  export function linkStrandsV3000(
19
19
  strands: { senseStrands: string[], antiStrands: string[] }, useChirality: boolean = true
20
20
  ): string {
21
- let macroMolBlock = '\nDatagrok macromolecule handler\n\n';
21
+ let macroMolBlock = '\n Datagrok macromolecule handler\n\n';
22
22
  macroMolBlock += ' 0 0 0 0 0 0 999 V3000\n';
23
23
  macroMolBlock += 'M V30 BEGIN CTAB\n';
24
24
  let atomBlock = '';
@@ -189,7 +189,7 @@ export function linkStrandsV3000(
189
189
  }
190
190
 
191
191
  export function linkV3000(molBlocks: string[], useChirality: boolean = true): string {
192
- let macroMolBlock = '\nDatagrok macromolecule handler\n\n';
192
+ let macroMolBlock = '\n Datagrok macromolecule handler\n\n';
193
193
  macroMolBlock += ' 0 0 0 0 0 0 999 V3000\n';
194
194
  macroMolBlock += 'M V30 BEGIN CTAB\n';
195
195
  let atomBlock = '';
@@ -219,7 +219,7 @@ export class SequenceToMolfileConverter {
219
219
 
220
220
 
221
221
  private linkV3000(molBlocks: string[], useChirality: boolean = true): string {
222
- let macroMolBlock = '\nDatagrok macromolecule handler\n\n';
222
+ let macroMolBlock = '\n Datagrok macromolecule handler\n\n';
223
223
  macroMolBlock += ' 0 0 0 0 0 0 999 V3000\n';
224
224
  macroMolBlock += 'M V30 BEGIN CTAB\n';
225
225
  let atomBlock = '';