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
ccbcef7e
Commit
ccbcef7e
authored
2 years ago
by
yakomaxa
Browse files
Options
Downloads
Patches
Plain Diff
lint
parent
d02a97b7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/mol-script/transpilers/rasmol/parser.ts
+11
-11
11 additions, 11 deletions
src/mol-script/transpilers/rasmol/parser.ts
with
11 additions
and
11 deletions
src/mol-script/transpilers/rasmol/parser.ts
+
11
−
11
View file @
ccbcef7e
...
@@ -40,24 +40,24 @@ function atomSelectionQuery2(x: any) {
...
@@ -40,24 +40,24 @@ function atomSelectionQuery2(x: any) {
if
(
!
ps
)
{
if
(
!
ps
)
{
const
[
resno
,
inscode
,
chainname
,
atomname
,
altloc
]
=
x
[
1
];
const
[
resno
,
inscode
,
chainname
,
atomname
,
altloc
]
=
x
[
1
];
const
tests
:
AtomGroupArgs
=
{};
const
tests
:
AtomGroupArgs
=
{};
if
(
chainname
)
{
if
(
chainname
)
{
// should be configurable, there is an option in Jmol to use auth or label
// should be configurable, there is an option in Jmol to use auth or label
tests
[
'
chain-test
'
]
=
B
.
core
.
rel
.
eq
([
B
.
ammp
(
'
auth_asym_id
'
),
chainname
]);
tests
[
'
chain-test
'
]
=
B
.
core
.
rel
.
eq
([
B
.
ammp
(
'
auth_asym_id
'
),
chainname
]);
}
}
const
resProps
=
[];
const
resProps
=
[];
if
(
resno
)
resProps
.
push
(
B
.
core
.
rel
.
eq
([
B
.
ammp
(
'
auth_seq_id
'
),
resno
]));
if
(
resno
)
resProps
.
push
(
B
.
core
.
rel
.
eq
([
B
.
ammp
(
'
auth_seq_id
'
),
resno
]));
if
(
inscode
)
resProps
.
push
(
B
.
core
.
rel
.
eq
([
B
.
ammp
(
'
pdbx_PDB_ins_code
'
),
inscode
]));
if
(
inscode
)
resProps
.
push
(
B
.
core
.
rel
.
eq
([
B
.
ammp
(
'
pdbx_PDB_ins_code
'
),
inscode
]));
if
(
resProps
.
length
)
tests
[
'
residue-test
'
]
=
h
.
andExpr
(
resProps
);
if
(
resProps
.
length
)
tests
[
'
residue-test
'
]
=
h
.
andExpr
(
resProps
);
const
atomProps
=
[];
const
atomProps
=
[];
if
(
atomname
)
atomProps
.
push
(
B
.
core
.
rel
.
eq
([
B
.
ammp
(
'
auth_atom_id
'
),
atomname
]));
if
(
atomname
)
atomProps
.
push
(
B
.
core
.
rel
.
eq
([
B
.
ammp
(
'
auth_atom_id
'
),
atomname
]));
if
(
altloc
)
atomProps
.
push
(
B
.
core
.
rel
.
eq
([
B
.
ammp
(
'
label_alt_id
'
),
altloc
]));
if
(
altloc
)
atomProps
.
push
(
B
.
core
.
rel
.
eq
([
B
.
ammp
(
'
label_alt_id
'
),
altloc
]));
if
(
atomProps
.
length
)
tests
[
'
atom-test
'
]
=
h
.
andExpr
(
atomProps
);
if
(
atomProps
.
length
)
tests
[
'
atom-test
'
]
=
h
.
andExpr
(
atomProps
);
return
B
.
struct
.
generator
.
atomGroups
(
tests
);
return
B
.
struct
.
generator
.
atomGroups
(
tests
);
// throw new Error(`property '${k}' not supported, value '${x[k]}'`);
// throw new Error(`property '${k}' not supported, value '${x[k]}'`);
}
}
if
(
x
[
k
]
===
null
)
continue
;
if
(
x
[
k
]
===
null
)
continue
;
if
(
!
props
[
ps
.
level
])
props
[
ps
.
level
]
=
[];
if
(
!
props
[
ps
.
level
])
props
[
ps
.
level
]
=
[];
...
@@ -280,13 +280,13 @@ const lang = P.MonadicParser.createLanguage({
...
@@ -280,13 +280,13 @@ const lang = P.MonadicParser.createLanguage({
)
)
);
);
},
},
AtomPrefix
:
()
=>
P
.
MonadicParser
.
regexp
(
/
[
0-9:^%
/
.
]
/
).
desc
(
'
atom-prefix
'
),
AtomPrefix
:
()
=>
P
.
MonadicParser
.
regexp
(
/
[
0-9:^%
/
.
]
/
).
desc
(
'
atom-prefix
'
),
Chainname
:
()
=>
P
.
MonadicParser
.
regexp
(
/:
([
A-Za-z
]{1,3})
/
,
1
).
desc
(
'
chainname
'
),
Chainname
:
()
=>
P
.
MonadicParser
.
regexp
(
/:
([
A-Za-z
]{1,3})
/
,
1
).
desc
(
'
chainname
'
),
Model
:
()
=>
P
.
MonadicParser
.
regexp
(
/
\/([
0-9
]
+
)
/
,
1
).
map
(
Number
).
desc
(
'
model
'
),
Model
:
()
=>
P
.
MonadicParser
.
regexp
(
/
\/([
0-9
]
+
)
/
,
1
).
map
(
Number
).
desc
(
'
model
'
),
Element
:
()
=>
P
.
MonadicParser
.
regexp
(
/_
([
A-Za-z
]{1,3})
/
,
1
).
desc
(
'
element
'
),
Element
:
()
=>
P
.
MonadicParser
.
regexp
(
/_
([
A-Za-z
]{1,3})
/
,
1
).
desc
(
'
element
'
),
Atomname
:
()
=>
P
.
MonadicParser
.
regexp
(
/
\.([
a-zA-Z0-9
]{1,4})
/
,
1
).
map
(
B
.
atomName
).
desc
(
'
atomname
'
),
Atomname
:
()
=>
P
.
MonadicParser
.
regexp
(
/
\.([
a-zA-Z0-9
]{1,4})
/
,
1
).
map
(
B
.
atomName
).
desc
(
'
atomname
'
),
Resname
:
()
=>
P
.
MonadicParser
.
regexp
(
/
[
A-Z0-9
]{1,4}
/
).
desc
(
'
resname
'
),
Resname
:
()
=>
P
.
MonadicParser
.
regexp
(
/
[
A-Z0-9
]{1,4}
/
).
desc
(
'
resname
'
),
Resno
:
(
r
:
any
)
=>
r
.
Integer
.
desc
(
'
resno
'
),
Resno
:
(
r
:
any
)
=>
r
.
Integer
.
desc
(
'
resno
'
),
Altloc
:
()
=>
P
.
MonadicParser
.
regexp
(
/%
([
a-zA-Z0-9
])
/
,
1
).
desc
(
'
altloc
'
),
Altloc
:
()
=>
P
.
MonadicParser
.
regexp
(
/%
([
a-zA-Z0-9
])
/
,
1
).
desc
(
'
altloc
'
),
Inscode
:
()
=>
P
.
MonadicParser
.
regexp
(
/
\^([
a-zA-Z0-9
])
/
,
1
).
desc
(
'
inscode
'
),
Inscode
:
()
=>
P
.
MonadicParser
.
regexp
(
/
\^([
a-zA-Z0-9
])
/
,
1
).
desc
(
'
inscode
'
),
...
...
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