OpenStructure
|
It is often convenient to highlight or focus certain parts of the structure. OpenStructure includes a powerful query system that allows you to perform custom selections in a convenient way.
Please refer to the tutorial on the query language for an introduction.
The query consists of one or more predicates combined with boolean operators. A predicate takes the form prop op value. Operators are one of
. A predicate has the following form: PROPERTY - OPERATOR - ARGUMENT. The following properties may be used in predicates. The supported type of the value is given for each property.
rname
residue name. type: string rnum
residue number. currently only numeric part is honored. type: int rtype
residue type as given by the DSSP code, i.e. H for helix, E for extended. type: string aname
atom name. type: string ele
element of atom. type: string cname
chain name. type: string occ
occupancy, between 0 and 1. type: float abfac
B (temperature) factor of atom. type: float rbfac
average B (temperature) factor of residue. type: float. Note that this does not work for views as expected. When running a second selection statement on a view, all atoms of the residue handle and not the view are considered in the calculation ishetatm
whether the atom is a hetorogenous atom. type: bool or int (0 for false, 1 for true) peptide
whether the residue is peptide linking. type: bool or int (0 for false, 1 for true) x
X coordinate of atom. type: float y
Y coordinate of atom. type: float z
Z coordinate of atom. type: float rindex
index of residue in chain. This index is the same for views and handles for
GenericProperties see belowDistance-based selections within a given atom position are supported by the within statement. To select atoms within 5 Angstrom of the point {1
,2
,3}
, one would write:
Negation of this expression is possible with the not operator, i.e.
will select atoms that are further than five Angstrom apart from {1
,2
,3}
Two abbreviations exist for convenience:
Instead of writing aname=CA or aname=C or aname=O or aname=N
, one can write aname=CA,N,C,O
. For integral value ranges, one can use the colon syntax: instead of rnum>=10 and rnum<=20one can write \c rnum=10:20
The query language can also be used for numeric generic properties (i.e. FloatProp and IntProp), but the syntax is slightly different. To access any generic properties, it needs to be specified that they are generic and at which level they are defined. Therefore, all generic properties start with a g
, followed by an a
, r
or c
for atom, residue or chain level respectively.
Since generic properties do not need to be defined for all parts of an entity (e.g. it could be specified for one single atomhandle), the query statement will throw an error unless you specify a default value in the query statement which can be done using a ':' character:
Using this method, you will be warned if a generic property is not set for all atoms, residues or chains unless you specify a default value. So, be careful when you do.