From a572872806f14327c90420b3f0777715cd07eb33 Mon Sep 17 00:00:00 2001 From: yakomaxa <47655565+yakomaxa@users.noreply.github.com> Date: Mon, 15 Aug 2022 20:53:47 +0900 Subject: [PATCH] Updated author information and removed notes --- src/mol-script/transpile.ts | 5 ++--- src/mol-script/transpilers/_spec/pymol.spec.ts | 1 + src/mol-script/transpilers/_spec/utils.ts | 1 + src/mol-script/transpilers/_spec/vmd.spec.ts | 1 + src/mol-script/transpilers/helper.ts | 2 +- src/mol-script/transpilers/jmol/keywords.ts | 4 ++-- src/mol-script/transpilers/jmol/markdown-docs.ts | 8 +++----- src/mol-script/transpilers/jmol/operators.ts | 7 ++----- src/mol-script/transpilers/jmol/parser.ts | 8 +++----- src/mol-script/transpilers/jmol/properties.ts | 7 ++----- src/mol-script/transpilers/jmol/symbols.ts | 7 ++----- src/mol-script/transpilers/rasmol/examples.ts | 2 +- src/mol-script/transpilers/rasmol/keywords.ts | 4 ++-- src/mol-script/transpilers/rasmol/macroproperties.ts | 4 +--- src/mol-script/transpilers/rasmol/markdown-docs.ts | 8 +++----- src/mol-script/transpilers/rasmol/operators.ts | 7 ++----- src/mol-script/transpilers/rasmol/parser.ts | 6 ++---- src/mol-script/transpilers/rasmol/properties.ts | 5 +---- src/mol-script/transpilers/rasmol/symbols.ts | 5 +---- src/mol-script/transpilers/vmd/parser.ts | 2 +- 20 files changed, 34 insertions(+), 60 deletions(-) diff --git a/src/mol-script/transpile.ts b/src/mol-script/transpile.ts index 8f185a1e1..86f9752f2 100644 --- a/src/mol-script/transpile.ts +++ b/src/mol-script/transpile.ts @@ -1,9 +1,8 @@ /** * Copyright (c) 2022 mol* contributors, licensed under MIT, See LICENSE file for more info. + * + * @author Koya Sakuma <koya.sakuma.work@gmail.com> * - * @author Koya Sakuma - */ -/** * Adapted from MolQL src/transpile.ts */ diff --git a/src/mol-script/transpilers/_spec/pymol.spec.ts b/src/mol-script/transpilers/_spec/pymol.spec.ts index fecaab502..24077684d 100644 --- a/src/mol-script/transpilers/_spec/pymol.spec.ts +++ b/src/mol-script/transpilers/_spec/pymol.spec.ts @@ -3,6 +3,7 @@ * * @author Alexander Rose <alexander.rose@weirdbyte.de> * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> + * @author Koya Sakuma <koya.sakuma.work@gmail.com> */ import * as u from './utils'; diff --git a/src/mol-script/transpilers/_spec/utils.ts b/src/mol-script/transpilers/_spec/utils.ts index 9f22b60aa..fc2e45d57 100644 --- a/src/mol-script/transpilers/_spec/utils.ts +++ b/src/mol-script/transpilers/_spec/utils.ts @@ -3,6 +3,7 @@ * * @author Alexander Rose <alexander.rose@weirdbyte.de> * @author Panagiotis Tourlas <panangiot_tourlov@hotmail.com> + * @author Koya Sakuma <koya.sakuma.work@gmail.com> */ import { Transpiler } from '../transpiler'; diff --git a/src/mol-script/transpilers/_spec/vmd.spec.ts b/src/mol-script/transpilers/_spec/vmd.spec.ts index 5107ab62a..67717ee48 100644 --- a/src/mol-script/transpilers/_spec/vmd.spec.ts +++ b/src/mol-script/transpilers/_spec/vmd.spec.ts @@ -3,6 +3,7 @@ * * @author Alexander Rose <alexander.rose@weirdbyte.de> * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> + * @author Koya Sakuma <koya.sakuma.work@gmail.com> */ import * as u from './utils'; diff --git a/src/mol-script/transpilers/helper.ts b/src/mol-script/transpilers/helper.ts index 62039b92b..cd2001ab6 100644 --- a/src/mol-script/transpilers/helper.ts +++ b/src/mol-script/transpilers/helper.ts @@ -3,7 +3,7 @@ * * @author Alexander Rose <alexander.rose@weirdbyte.de> * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> - * @author Koya Sakuma + * @author Koya Sakuma <koya.sakuma.work@gmail.com> */ // import * as Q from 'parsimmon'; import * as P from '../../mol-util/monadic-parser'; diff --git a/src/mol-script/transpilers/jmol/keywords.ts b/src/mol-script/transpilers/jmol/keywords.ts index 186b149db..663b20657 100644 --- a/src/mol-script/transpilers/jmol/keywords.ts +++ b/src/mol-script/transpilers/jmol/keywords.ts @@ -1,7 +1,7 @@ /** * Copyright (c) 2017-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. - * @author Alexander Rose <alexander.rose@weirdbyte.de> * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> * - * @author Koya Sakuma * This module was taken from MolQL and modified in similar manner as pymol and vmd tranpilers. + * @author Koya Sakuma <koya.sakuma.work@gmail.com> + * Adapted from MolQL project **/ diff --git a/src/mol-script/transpilers/jmol/markdown-docs.ts b/src/mol-script/transpilers/jmol/markdown-docs.ts index d1b022250..813fb82e7 100644 --- a/src/mol-script/transpilers/jmol/markdown-docs.ts +++ b/src/mol-script/transpilers/jmol/markdown-docs.ts @@ -1,10 +1,8 @@ /* * Copyright (c) 2017-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. - * @author Alexander Rose <alexander.rose@weirdbyte.de> - * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> - * - * @author Koya Sakuma - * This module was taken from MolQL and modified in similar manner as pymol and vmd tranpilers. */ + * @author Koya Sakuma <koya.sakuma.work@gmail.com> + * Adapted from MolQL project +*/ import { properties } from './properties'; import { operators } from './operators'; diff --git a/src/mol-script/transpilers/jmol/operators.ts b/src/mol-script/transpilers/jmol/operators.ts index cf0777504..701eb9aa3 100644 --- a/src/mol-script/transpilers/jmol/operators.ts +++ b/src/mol-script/transpilers/jmol/operators.ts @@ -1,10 +1,7 @@ /* * Copyright (c) 2017-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. - * @author Alexander Rose <alexander.rose@weirdbyte.de> - * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> - * - * @author Koya Sakuma - * This module was taken from MolQL and modified in similar manner as pymol and vmd tranpilers. \ + * @author Koya Sakuma <koya.sakuma.work@gmail.com> + * Adapted from MolQL project */ diff --git a/src/mol-script/transpilers/jmol/parser.ts b/src/mol-script/transpilers/jmol/parser.ts index ca67b5265..abdbcb016 100644 --- a/src/mol-script/transpilers/jmol/parser.ts +++ b/src/mol-script/transpilers/jmol/parser.ts @@ -1,10 +1,8 @@ /** * Copyright (c) 2017-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. - * @author Alexander Rose <alexander.rose@weirdbyte.de> - * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> - * - * @author Koya Sakuma - * This module was taken from MolQL and modified in similar manner as pymol and vmd tranpilers. **/ + * @author Koya Sakuma < koya.sakuma.work@gmail.com> + * Adapted from MolQL project + **/ import * as P from '../../../mol-util/monadic-parser'; diff --git a/src/mol-script/transpilers/jmol/properties.ts b/src/mol-script/transpilers/jmol/properties.ts index e80f98646..a0a867473 100644 --- a/src/mol-script/transpilers/jmol/properties.ts +++ b/src/mol-script/transpilers/jmol/properties.ts @@ -1,10 +1,7 @@ /* * Copyright (c) 2017-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. - * @author Alexander Rose <alexander.rose@weirdbyte.de> - * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> - * - * @author Koya Sakuma - * This module was taken from MolQL and modified in similar manner as pymol and vmd tranpilers. \ + * @author Koya Sakuma <koya.sakuma.work@gmail.com> + * Adapted from MolQL project */ import { MolScriptBuilder } from '../../../mol-script/language/builder'; diff --git a/src/mol-script/transpilers/jmol/symbols.ts b/src/mol-script/transpilers/jmol/symbols.ts index 85617eadc..556ff5ad7 100644 --- a/src/mol-script/transpilers/jmol/symbols.ts +++ b/src/mol-script/transpilers/jmol/symbols.ts @@ -1,10 +1,7 @@ /* * Copyright (c) 2017-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. - * @author Alexander Rose <alexander.rose@weirdbyte.de> - * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> - * - * @author Koya Sakuma - * This module was taken from MolQL and modified in similar manner as pymol and vmd tranpilers. \ + * @author Koya Sakuma <koya.sakuma.work@gmail.com> + * Adapted from MolQL project */ import { properties } from './properties'; diff --git a/src/mol-script/transpilers/rasmol/examples.ts b/src/mol-script/transpilers/rasmol/examples.ts index 995805086..514e8371c 100644 --- a/src/mol-script/transpilers/rasmol/examples.ts +++ b/src/mol-script/transpilers/rasmol/examples.ts @@ -3,7 +3,7 @@ * * @author Alexander Rose <alexander.rose@weirdbyte.de> * @author David Sehnal <david.sehnal@gmail.com> - * @author Koya Sakuma + * */ export const rasmolSelectionsExamples = [{ diff --git a/src/mol-script/transpilers/rasmol/keywords.ts b/src/mol-script/transpilers/rasmol/keywords.ts index e0c79de31..4e451290c 100644 --- a/src/mol-script/transpilers/rasmol/keywords.ts +++ b/src/mol-script/transpilers/rasmol/keywords.ts @@ -1,7 +1,7 @@ /** * Copyright (c) 2017-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. - * @author Alexander Rose <alexander.rose@weirdbyte.de> * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> * - * @author Koya Sakuma * This module was based on jmol transpiler from MolQL and modified in similar manner as pymol and vmd tranpilers. + * + * @author Koya Sakuma <koya.sakuma.work@gmail.com> **/ diff --git a/src/mol-script/transpilers/rasmol/macroproperties.ts b/src/mol-script/transpilers/rasmol/macroproperties.ts index 5f70bce0e..3090aa292 100644 --- a/src/mol-script/transpilers/rasmol/macroproperties.ts +++ b/src/mol-script/transpilers/rasmol/macroproperties.ts @@ -1,9 +1,7 @@ /** * Copyright (c) 2017-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. * - * @author Alexander Rose <alexander.rose@weirdbyte.de> - * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> - * @author Koya Sakuma + * @author Koya Sakuma <koya.sakuma.work@gmail.com> */ import { MolScriptBuilder } from '../../../mol-script/language/builder'; diff --git a/src/mol-script/transpilers/rasmol/markdown-docs.ts b/src/mol-script/transpilers/rasmol/markdown-docs.ts index 93e23c577..ea4dc8203 100644 --- a/src/mol-script/transpilers/rasmol/markdown-docs.ts +++ b/src/mol-script/transpilers/rasmol/markdown-docs.ts @@ -1,10 +1,8 @@ /* * Copyright (c) 2017-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. - * @author Alexander Rose <alexander.rose@weirdbyte.de> - * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> * - * @author Koya Sakuma - * This module is based on jmol transpiler from MolQL and modified in similar manner as pymol and vmd tranpilers. */ + * @author Koya Sakuma <koya.sakuma.work@gmail.com> +*/ import { properties } from './properties'; import { operators } from './operators'; @@ -12,7 +10,7 @@ import { keywords } from './keywords'; const _docs: string[] = [ - 'Jmol', + 'RasMol', '============', '--------------------------------', '' diff --git a/src/mol-script/transpilers/rasmol/operators.ts b/src/mol-script/transpilers/rasmol/operators.ts index 5aa727701..fb2880f2c 100644 --- a/src/mol-script/transpilers/rasmol/operators.ts +++ b/src/mol-script/transpilers/rasmol/operators.ts @@ -1,10 +1,7 @@ /* * Copyright (c) 2017-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. - * @author Alexander Rose <alexander.rose@weirdbyte.de> - * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> - * - * @author Koya Sakuma - * This module is based on jmol transpiler from MolQL and modified in similar manner as pymol and vmd tranpilers + * + * @author Koya Sakuma <koya.sakuma.work@gmail.com> */ diff --git a/src/mol-script/transpilers/rasmol/parser.ts b/src/mol-script/transpilers/rasmol/parser.ts index 194394d26..67006ee28 100644 --- a/src/mol-script/transpilers/rasmol/parser.ts +++ b/src/mol-script/transpilers/rasmol/parser.ts @@ -1,9 +1,7 @@ /** * Copyright (c) 2017-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. - * @author Alexander Rose <alexander.rose@weirdbyte.de> - * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> - * @author Koya Sakuma - * This module is based on jmol tranpiler from MolQL and modified in similar manner as pymol and vmd tranpilers. + * + * @author Koya Sakuma <koya.sakuma.work@gmail.com> **/ diff --git a/src/mol-script/transpilers/rasmol/properties.ts b/src/mol-script/transpilers/rasmol/properties.ts index 71543e4ee..afa5b7236 100644 --- a/src/mol-script/transpilers/rasmol/properties.ts +++ b/src/mol-script/transpilers/rasmol/properties.ts @@ -1,10 +1,7 @@ /* * Copyright (c) 2017-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. - * @author Alexander Rose <alexander.rose@weirdbyte.de> - * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> * - * @author Koya Sakuma - * This module was taken from jmol transpiler from MolQL and modified in similar manner as pymol and vmd tranpilers. \ + * @author Koya Sakuma <koya.sakuma.work@gmail.com> */ import { MolScriptBuilder } from '../../../mol-script/language/builder'; diff --git a/src/mol-script/transpilers/rasmol/symbols.ts b/src/mol-script/transpilers/rasmol/symbols.ts index f298facbe..a13dbb288 100644 --- a/src/mol-script/transpilers/rasmol/symbols.ts +++ b/src/mol-script/transpilers/rasmol/symbols.ts @@ -1,10 +1,7 @@ /* * Copyright (c) 2017-2021 mol* contributors, licensed under MIT, See LICENSE file for more info. - * @author Alexander Rose <alexander.rose@weirdbyte.de> - * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> * - * @author Koya Sakuma - * This module is based on jmol tranpiler from MolQL and modified in similar manner as pymol and vmd tranpilers. \ + * @author Koya Sakuma <koya.sakuma.work@gmail.com> */ import { properties } from './properties'; diff --git a/src/mol-script/transpilers/vmd/parser.ts b/src/mol-script/transpilers/vmd/parser.ts index 7aa983f6c..455d4c001 100644 --- a/src/mol-script/transpilers/vmd/parser.ts +++ b/src/mol-script/transpilers/vmd/parser.ts @@ -3,7 +3,7 @@ * * @author Alexander Rose <alexander.rose@weirdbyte.de> * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com> - * @author Koya Sakuma + * @author Koya Sakuma <koya.sakuma.work@gmail.com> */ import * as P from '../../../mol-util/monadic-parser'; -- GitLab