From 0406265138b85649fb6ebcd03ed3299ac63e6eac Mon Sep 17 00:00:00 2001 From: Alexander Rose <alex.rose@rcsb.org> Date: Mon, 20 Aug 2018 16:31:16 -0700 Subject: [PATCH] docs --- src/apps/viewer/index.html | 2 +- src/mol-model/structure/query/queries/generators.ts | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/apps/viewer/index.html b/src/apps/viewer/index.html index f3faa04f9..b2c505caf 100644 --- a/src/apps/viewer/index.html +++ b/src/apps/viewer/index.html @@ -3,7 +3,7 @@ <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> - <title>Mol* Render Test</title> + <title>Mol* Viewer</title> <link href='./app.css', rel="stylesheet"> </head> <body> diff --git a/src/mol-model/structure/query/queries/generators.ts b/src/mol-model/structure/query/queries/generators.ts index f8ba1c17f..d7c63919c 100644 --- a/src/mol-model/structure/query/queries/generators.ts +++ b/src/mol-model/structure/query/queries/generators.ts @@ -15,9 +15,13 @@ export const none: StructureQuery = ctx => StructureSelection.Sequence(ctx.input export const all: StructureQuery = ctx => StructureSelection.Singletons(ctx.inputStructure, ctx.inputStructure); export interface AtomsQueryParams { + /** Query to be executed for each entity once */ entityTest: QueryPredicate, + /** Query to be executed for each chain once */ chainTest: QueryPredicate, + /** Query to be executed for each residue once */ residueTest: QueryPredicate, + /** Query to be executed for each atom */ atomTest: QueryPredicate, groupBy: QueryFn } -- GitLab