Difference between revisions of "Selecting"

From Jmol
Jump to navigation Jump to search
(I think I can safely call these 'topology expressions')
Line 1: Line 1:
 
{{Tutorials_Sections}}
 
{{Tutorials_Sections}}
  
Selecting can be done via atom expressions or based on geometry.
+
Selecting can be done via atom expressions or based on topology or geometry.
 
The selection expressions used in Jmol can be used for the "select" and the "display within" commands.
 
The selection expressions used in Jmol can be used for the "select" and the "display within" commands.
  
 
= Atom expressions =
 
= Atom expressions =
 +
In the reference the full list of [http://chemapps.stolaf.edu/jmol/docs/#atomexpressions atom expressions] can be found.
  
 
= Geometric expressions =
 
= Geometric expressions =
 +
 +
 +
= Topology expressions =
 +
Some examples of using topologies as selection criteria: (check the [http://chemapps.stolaf.edu/jmol/docs/#atomexpressions reference] for more options)
 +
* '''select molecule = 1''' selects the first set of covalently bound atoms in the file.
 +
* '''select connected(3)''' selects all atoms that are connected by bonds to 3 other atoms.
 +
* '''select substructure("C(O)C")''' selects all ketone groups in the system. Any substructure strings in the [http://www.daylight.com/smiles/ SMILE] format are accepted.
  
 
= Combining selection statements =
 
= Combining selection statements =

Revision as of 17:26, 27 June 2007

Jmol / JSmol Tutorials


Selecting can be done via atom expressions or based on topology or geometry. The selection expressions used in Jmol can be used for the "select" and the "display within" commands.

Atom expressions

In the reference the full list of atom expressions can be found.

Geometric expressions

Topology expressions

Some examples of using topologies as selection criteria: (check the reference for more options)

  • select molecule = 1 selects the first set of covalently bound atoms in the file.
  • select connected(3) selects all atoms that are connected by bonds to 3 other atoms.
  • select substructure("C(O)C") selects all ketone groups in the system. Any substructure strings in the SMILE format are accepted.

Combining selection statements

The combination of selection statements in Jmol is based on Boolean logic, using the statements And, Or, and Not, in a slightly different way than these are used in conversational language.

Example: We have a system consisting of water and a peptide chain. We are interested in selecting oxygen atoms. Let's call the set of atoms in the peptide chain A, and all oxygen atoms B.

Select A

Selects all atoms in the peptide chain.

Select A or B

Selects all atoms in the peptide chain, and all oxygen atoms, including the oxygen atoms in the water molecules.

Select A and B

Selects only the atoms that are both belonging to the peptide chain, and oxygen atoms. Therefore it selects only the oxygen atoms in the chain.

Select A not B

Selects the atoms in the peptide chain, but not the ones that are oxygen atoms.

Select (A or B ) and (not (A and B))

Selects all the peptide chain atoms and all the oxygen atoms, but not the oxygen atoms in the peptide chain.

Contributors

Pimpim, AngelHerraez