Skip to content
Snippets Groups Projects
Commit fcd5b2ce authored by yakomaxa's avatar yakomaxa
Browse files

VMD parser debugged

parent 57a1184a
No related branches found
No related tags found
No related merge requests found
......@@ -57,20 +57,25 @@ const valueOperators: OperatorList = [
type: h.binaryLeft,
rule: P.MonadicParser.alt(P.MonadicParser.regexp(/\s*(=~|==|>=|<=|=|!=|>|<)\s*/, 1), P.MonadicParser.whitespace.result('=')),
map: (op, e1, e2) => {
console.log(e1.head !== undefined && e2.head !==undefined)
// console.log(e1.head !== undefined && e2.head !==undefined)
console.log(op, e1, e2)
let expr;
if (e1.head !== undefined && e2.head !== undefined){
if (e1.head !== undefined){
if (e1.head.name === 'structure-query.atom-property.macromolecular.secondary-structure-flags') {
expr = B.core.flags.hasAny([e1, sstrucMap(e2)]);
} else if (e2.head.name === 'structure-query.atom-property.macromolecular.secondary-structure-flags') {
expr = B.core.flags.hasAny([e2, sstrucMap(e1)]);
} else if (e1.head.name === 'core.type.regex') {
}
if (e1.head.name === 'core.type.regex') {
expr = B.core.str.match([e1, B.core.type.str([e2])]);
} else if (e2.head.name === 'core.type.regex') {
}
}else if (e2.head !== undefined){
if (e2.head.name === 'structure-query.atom-property.macromolecular.secondary-structure-flags') {
expr = B.core.flags.hasAny([e2, sstrucMap(e1)]);
}
if (e2.head.name === 'core.type.regex') {
expr = B.core.str.match([e2, B.core.type.str([e1])]);
}
}else if (op === '=~') {
if (e1.head.name) {
if (e1.head) {
expr = B.core.str.match([
B.core.type.regex([`^${e2}$`, 'i']),
B.core.type.str([e1])
......@@ -82,7 +87,6 @@ const valueOperators: OperatorList = [
]);
}
}
}
if (!expr) {
if (e1.head) e2 = h.wrapValue(e1, e2);
if (e2.head) e1 = h.wrapValue(e2, e1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment