Difference between revisions of "Atom name wildcard"

From PyMOLWiki
Jump to navigation Jump to search
m (str.replace)
 
Line 13: Line 13:
 
<source lang="python">
 
<source lang="python">
 
# change all '*'s in names to "'"
 
# change all '*'s in names to "'"
alter all, name=string.replace(name,"*","'")
+
alter all, name=name.replace("*","'")
</source>
 
or in PyMol 2.x
 
<source lang="python">
 
# change all '*'s in names to "'"
 
alter all, name=str.replace(name,"*","'")
 
 
</source>
 
</source>
 
you will be able to distinguish C2 from C2' and still have your atom
 
you will be able to distinguish C2 from C2' and still have your atom

Latest revision as of 05:13, 20 November 2017

OVERVIEW

This setting controls whether or not PyMOL will respect wildcards ("*"). PyMOL automatically disables the asterisk wildcard for atom names in PDB structures read which contain asterisks in the atom name field (as many NA structures do).

USAGE

The following code will restore wildcard usage in PyMOL, if it has been turned off.

# allow wildcards
unset atom_name_wildcard, object-name

Please note, however, that PyMOL will then be unable to distinguish C2 in the base from C2* in the sugar.

If, before running the previous command, you instead issue the following command:

# change all '*'s in names to "'"
alter all, name=name.replace("*","'")

you will be able to distinguish C2 from C2' and still have your atom name wildcards!