Alexander Rose 7 gadi atpakaļ
vecāks
revīzija
5e91cff080

+ 1 - 1
LICENSE

@@ -1,6 +1,6 @@
 The MIT License
 
-    Copyright (c) 2017, MolQL contributors
+    Copyright (c) 2017, MolIO contributors
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal

+ 1 - 0
dist/molio.esm.js

@@ -559,6 +559,7 @@ function handleNumberOfAtoms(state, tokens) {
  *     velocity (in nm/ps (or km/s), x y z in 3 columns, each 8 positions with 4 decimal places)
  */
 function handleAtoms(state, block) {
+    console.log('MOINMOIN');
     var name = 'atoms';
     var columns = ['residueNumber', 'residueName', 'atomName', 'atomNumber', 'x', 'y', 'z'];
     if (state.hasVelocities) {

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
dist/molio.js


+ 5 - 0
src/index.d.ts

@@ -1,3 +1,8 @@
+/*
+ * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * @author Alexander Rose <alexander.rose@weirdbyte.de>
+ */
 
 export { ParserResult, ParserError, ParserSuccess } from './parser'
 

+ 5 - 0
src/index.ts

@@ -1,2 +1,7 @@
+/*
+ * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * @author Alexander Rose <alexander.rose@weirdbyte.de>
+ */
 
 export { parse as groReader } from './reader/gro'

+ 1 - 0
src/reader/gro.ts

@@ -182,6 +182,7 @@ function handleNumberOfAtoms (state: GroState, tokens: Tokens) {
  *     velocity (in nm/ps (or km/s), x y z in 3 columns, each 8 positions with 4 decimal places)
  */
 function handleAtoms (state: GroState, block: GroBlock) {
+    console.log('MOINMOIN')
     const name = 'atoms'
 
     const columns = [ 'residueNumber', 'residueName', 'atomName', 'atomNumber', 'x', 'y', 'z' ]

+ 5 - 0
src/reader/spec/gro.spec.ts

@@ -1,3 +1,8 @@
+/*
+ * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * @author Alexander Rose <alexander.rose@weirdbyte.de>
+ */
 
 import { parse } from '../gro'
 // import { Table } from '../../relational/table'

+ 6 - 0
src/relational/column.ts

@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * from https://github.com/dsehnal/CIFTools.js
+ * @author David Sehnal <david.sehnal@gmail.com>
+ */
 
 import { ValuePresence } from './constants'
 

+ 6 - 1
src/relational/constants.ts

@@ -1,4 +1,9 @@
-
+/*
+ * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * from https://github.com/dsehnal/CIFTools.js
+ * @author David Sehnal <david.sehnal@gmail.com>
+ */
 
 export const enum ValuePresence {
     Present = 0,

+ 6 - 0
src/relational/table.ts

@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * from https://github.com/dsehnal/CIFTools.js
+ * @author David Sehnal <david.sehnal@gmail.com>
+ */
 
 import { Column } from './column'
 

+ 7 - 0
src/relational/text-column.ts

@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * from https://github.com/dsehnal/CIFTools.js
+ * @author David Sehnal <david.sehnal@gmail.com>
+ * @author Alexander Rose <alexander.rose@weirdbyte.de>
+ */
 
 import { Column } from './column'
 import { ValuePresence } from './constants'

+ 7 - 1
src/relational/text-table.ts

@@ -1,4 +1,10 @@
-
+/*
+ * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * from https://github.com/dsehnal/CIFTools.js
+ * @author David Sehnal <david.sehnal@gmail.com>
+ * @author Alexander Rose <alexander.rose@weirdbyte.de>
+ */
 
 import { Table } from './table'
 import { UndefinedColumn } from './column'

+ 5 - 0
src/script.ts

@@ -1,3 +1,8 @@
+/*
+ * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * @author Alexander Rose <alexander.rose@weirdbyte.de>
+ */
 
 // import * as util from 'util'
 import * as fs from 'fs'

+ 6 - 0
src/utils/helper.ts

@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * from https://github.com/dsehnal/CIFTools.js
+ * @author David Sehnal <david.sehnal@gmail.com>
+ */
 
 import { TokenizerState } from './tokenizer-state'
 

+ 7 - 0
src/utils/tokenizer-state.ts

@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * from https://github.com/dsehnal/CIFTools.js
+ * @author David Sehnal <david.sehnal@gmail.com>
+ * @author Alexander Rose <alexander.rose@weirdbyte.de>
+ */
 
 export interface TokenizerState {
     data: string

+ 7 - 0
src/utils/tokens.ts

@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * from https://github.com/dsehnal/CIFTools.js
+ * @author David Sehnal <david.sehnal@gmail.com>
+ * @author Alexander Rose <alexander.rose@weirdbyte.de>
+ */
 
 /**
  * A helper for building a typed array of token indices.

Daži faili netika attēloti, jo izmaiņu fails ir pārāk liels