Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Molstar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michal Malý
Molstar
Commits
1ca103f6
Commit
1ca103f6
authored
7 years ago
by
Zepei Xu
Browse files
Options
Downloads
Patches
Plain Diff
added unit tests, made some notes
parent
6709fc38
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/reader/mol2/parser.ts
+11
-0
11 additions, 0 deletions
src/reader/mol2/parser.ts
src/reader/mol2/schema.d.ts
+1
-0
1 addition, 0 deletions
src/reader/mol2/schema.d.ts
src/reader/spec/mol2.spec.ts
+67
-0
67 additions, 0 deletions
src/reader/spec/mol2.spec.ts
with
79 additions
and
0 deletions
src/reader/mol2/parser.ts
+
11
−
0
View file @
1ca103f6
...
@@ -6,6 +6,17 @@ import Result from '../result'
...
@@ -6,6 +6,17 @@ import Result from '../result'
import
Computation
from
'
../../utils/computation
'
////////// not using this
import
Computation
from
'
../../utils/computation
'
////////// not using this
/*////////////////////////// NOTES //////////////////////////////
Not using async, wait, promises, computation, chunker.
Formatting is not clear, different exmaples mol2 files has different field sizes, so making
columns using col() is not possible. Need to implement checks for optional columns, but not clear
about the names of each entry in a row in the example files.
Don't know when to use str and when to use pooledStr
Unlike gro file, mol2 file don't save 'hasSomthing' properties in the header-like Molecule
///////////////////////////////////////////////////////////////*/
interface
State
{
interface
State
{
tokenizer
:
Tokenizer
,
tokenizer
:
Tokenizer
,
...
...
This diff is collapsed.
Click to expand it.
src/reader/mol2/schema.d.ts
+
1
−
0
View file @
1ca103f6
...
@@ -25,6 +25,7 @@ export interface Molecule {
...
@@ -25,6 +25,7 @@ export interface Molecule {
charge_type
:
string
charge_type
:
string
status_bits
:
string
status_bits
:
string
mol_comment
:
string
mol_comment
:
string
///////////// precisions are not saved for later use, and there is not 'hasSomthing' properties
}
}
export
interface
Atoms
{
export
interface
Atoms
{
...
...
This diff is collapsed.
Click to expand it.
src/reader/spec/mol2.spec.ts
0 → 100644
+
67
−
0
View file @
1ca103f6
import
Mol2
from
'
../mol2/parser
'
const
Mol2String
=
`@<TRIPOS>MOLECULE
5816
26 26 0 0 0
SMALL
GASTEIGER
@<TRIPOS>ATOM
1 O 1.7394 -2.1169 -1.0894 O.3 1 LIG1 -0.3859
2 O -2.2941 1.0781 -1.7979 O.3 1 LIG1 -0.5033
@<TRIPOS>BOND
1 1 5 1
2 1 21 1`
////////// nothing works until add async and await and promise to parser.mol2 file.
describe
(
'
mol2 reader
'
,
()
=>
{
it
(
'
basic
'
,
async
()
=>
{
const
parsed
=
await
Mol2
(
Mol2String
)();
if
(
parsed
.
isError
)
{
console
.
log
(
parsed
)
return
;
}
const
mol2File
=
parsed
.
result
;
const
data
=
mol2File
.
structures
[
0
];
const
{
molecule
,
atoms
,
bonds
}
=
data
;
expect
(
molecule
.
mol_name
).
toBe
(
5816
)
expect
(
molecule
.
num_atoms
).
toBe
(
26
)
expect
(
molecule
.
num_bonds
).
toBe
(
26
);
expect
(
molecule
.
num_subst
).
toBe
(
0
);
expect
(
molecule
.
num_feat
).
toBe
(
0
);
expect
(
molecule
.
num_sets
).
toBe
(
0
);
expect
(
molecule
.
mol_type
).
toBe
(
""
)
expect
(
molecule
.
charge_type
).
toBe
(
""
);
expect
(
molecule
.
status_bits
).
toBe
(
""
);
expect
(
molecule
.
mol_comment
).
toBe
(
""
);
expect
(
atoms
.
count
).
toBe
(
2
);
expect
(
atoms
.
atom_id
.
value
(
0
)).
toBe
(
1
);
expect
(
atoms
.
atom_name
.
value
(
0
)).
toBe
(
'
o
'
);
expect
(
atoms
.
x
.
value
(
0
)).
toBeCloseTo
(
1.7394
,
0.001
);
expect
(
atoms
.
y
.
value
(
0
)).
toBeCloseTo
(
-
2.1169
,
0.0001
);
expect
(
atoms
.
z
.
value
(
0
)).
toBeCloseTo
(
-
1.0893
,
0.0001
);
expect
(
atoms
.
atom_type
.
value
(
0
)).
toBe
(
''
);
///// optionals
expect
(
atoms
.
subst_id
.
value
(
0
)).
toBe
(
0
);
expect
(
atoms
.
subst_name
.
value
(
0
)).
toBe
(
''
);
expect
(
atoms
.
charge
.
value
(
0
)).
toBeCloseTo
(
0.000
);
expect
(
atoms
.
status_bits
.
value
(
0
)).
toBe
(
''
);
expect
(
bonds
.
count
).
toBe
(
2
);
expect
(
bonds
.
bond_id
.
value
(
0
)).
toBe
(
1
);
expect
(
bonds
.
origin_atom_id
.
value
(
0
)).
toBe
(
1
);
expect
(
bonds
.
target_atom_id
.
value
(
0
)).
toBe
(
5
);
expect
(
bonds
.
bond_type
.
value
(
0
)).
toBe
(
'
1
'
);
/////// optional
expect
(
bonds
.
status_bits
.
value
(
0
)).
toBe
(
''
);
});
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment