Browse Source

Updated author information and removed notes

yakomaxa 2 years ago
parent
commit
a572872806

+ 2 - 3
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
  */
 

+ 1 - 0
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';

+ 1 - 0
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';

+ 1 - 0
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';

+ 1 - 1
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';

+ 2 - 2
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
 **/
 
 

+ 3 - 5
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';

+ 2 - 5
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
  */
 
 

+ 3 - 5
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';

+ 2 - 5
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';

+ 2 - 5
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';

+ 1 - 1
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 = [{

+ 2 - 2
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>                             
 **/
 
 

+ 1 - 3
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';

+ 3 - 5
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',
     '============',
     '--------------------------------',
     ''

+ 2 - 5
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>
  */
 
 

+ 2 - 4
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>
  **/
 
 

+ 1 - 4
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';

+ 1 - 4
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';

+ 1 - 1
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';