This is a read-only mirror of pymolwiki.org
Difference between revisions of "Label"
Line 165: | Line 165: | ||
<source lang="python"> | <source lang="python"> | ||
label n. ca, one_letter[resn] | label n. ca, one_letter[resn] | ||
+ | </source> | ||
+ | or: ( to get something like D85) | ||
+ | <source lang="python"> | ||
+ | label n. ca, "%s%s" %(one_letter[resn],resi) | ||
</source> | </source> | ||
Revision as of 09:44, 10 July 2009
Overview
The Label command controls how PyMOL draws text labels for PyMOL objects. Labeling is important so there are many options for your fine tuning needs. You can change the label size, label color, positioning, font, the label outline color that masks the font and much, much more.
You can have PyMOL label atoms by properties or arbitrary strings as you want; you can even use Unicode fonts for special symbols like, <math>\alpha, \beta, \pm, \textrm{\AA}</math>, etc.
The following gallery shows some examples of how extensible the Label command is.
Built-in Object Properties
Aside from arbitrary string labels, like "This is the catalytic residue" for an atom/residue you can also use the following built-in molecular properties:
- name, the atom name
- resn, the residue name
- resi, the residue number/identifier
- chain, the chain name
- q, charge
- b, the occupancy/b-factor
- segi, the segment identifier
- type (ATOM,HETATM), the type of atom
- formal_charge, the formal charge
- partial_charge, the partial charge
- numeric_type, the numeric type
- text_type, the text type
You can use one of these properties as:
# simple example: label residue 22's atoms with their names
label i. 22, name
# Label residue #44's alpha carbon with it's residue name, residue number and B-factor.
label n. CA and i. 44, "(%s, %s, %s") % (resn, resi, b)
See the syntax and examples below for more info.
Syntax
To use the label command follow this syntax:
# labeling syntax
label [ selection[, expression]]
where selection is some object/selection you want to label and expression is some string (or set of strings) which PyMOL is to use to label the given selection.
We have plenty of examples. See the examples below.
Settings
Here are all the label settings and their general effect. For each label setting, see the respective web page for more details.
- (no idea)
- (no idea)
- sets whether or not PyMOL will ray trace shadows for your label text. Eg:
set label_shadow_mode, 2
- sets whether or not PyMOL will ray trace shadows for your label text. Eg:
- sets the color of the label text. Note that you can have labels of different colors for different objects or selections. Some examples:
# per-object:
set label-color, color-name, object-name #eg, set label-color, magenta, /protein
# per-atom:
set label-color, color-name, selection #eg, set label-color, marine, /protein/A/A/23/CA
# another example
fragment arg
label all, name
set label_color, yellow, arg
set label_color, red, elem c
- sets the font to render your label. There are 12 different fonts from 5—16. Numbers 15 and 16 are special for unicode. Eg:
set label_font_id, 12
- sets the font to render your label. There are 12 different fonts from 5—16. Numbers 15 and 16 are special for unicode. Eg:
- sets the size of the text. You can use positive numbers 2, 3, 4, etc for point sizes, or negative sizes for Angstrom-based sizes: A 2Ang font woukld then be -2. Eg:
set label_size, -2
- sets the size of the text. You can use positive numbers 2, 3, 4, etc for point sizes, or negative sizes for Angstrom-based sizes: A 2Ang font woukld then be -2. Eg:
- (no idea)
- each label is outlined (so you can do white-on-white labels, for example). This options sets the color of the label outline. Eg.
set label_outline_color, orange
- each label is outlined (so you can do white-on-white labels, for example). This options sets the color of the label outline. Eg.
- (no idea)
- sets any offset from the original X,Y,Z coordinates for the label. If you like to use the mouse, you can enter edit_mode and ctrl-middle-click to drag labels around; ctrl-shift-left_click will let you move the labels in the z-direction. "Save labels"-workaround If you want to save the position of your labels, the best way might be to create a new object and move the atoms in this object. Since the labels are positioned from the atom positions this is an indirect way of moving the labels and beeing able to save them.
Examples
#1.
# make a very simple label on the 14th alpha carbon.
label n. CA and i. 14, "This is carbon 14."
#2.
# make a fake scene label; use this to label entire scenes, not just atoms/bonds.
pseudoatom foo
label foo, "Once upon a time..."
#3.
# make a huge label
set label_size, -5
pseudoatom foo
label foo, "This is large text"
#4. Partial Charge
label (chain A),chain
label (n;ca),"%s-%s" % (resn,resi)
label (resi 200),"%1.3f" % partial_charge
#5. The gallery image above Label_ex.png was created with this code
# and finally, some labels were moved around in '''edit_mode'''.
label (resi 200),"%1.3f" % b
set label_font_id, 10
set label_size, 10
#6. This example shows how to label a selection with the
# XYZ coordinates of the atoms
from pymol import stored
stored.pos = []
# select the carbon atoms in my hetero atoms to label
select nn, het and e. C
# get the XYZ coordinates and put htem into stored.pos
iterate_state 1, (nn), stored.pos.append((x,y,z))
# label all N atoms. You need the pop() function or else
# PyMOL will complain b/c you didn't provide enough coords.
label nn, ("%5.5s, %5.5s, %5.5s") % stored.pos.pop()
User Comments
Labels Using ID Numbers
The following commnent,
label SELECTION, " %s" % ID
labels the SELECTION with atom ID numbers.
You can make more complicated selections/lables such as
label SELECTION, " %s:%s %s" % (resi, resn, name)
which will give you something like "GLU:139 CG"
Labels Using One Letter Abbreviations
- First, Add this to your $HOME/.pymolrc file:
# start $HOME/.pymolrc modification
one_letter ={'VAL':'V', 'ILE':'I', 'LEU':'L', 'GLU':'E', 'GLN':'Q', \
'ASP':'D', 'ASN':'N', 'HIS':'H', 'TRP':'W', 'PHE':'F', 'TYR':'Y', \
'ARG':'R', 'LYS':'K', 'SER':'S', 'THR':'T', 'MET':'M', 'ALA':'A', \
'GLY':'G', 'PRO':'P', 'CYS':'C'}
# end modification
- Second, instead of:
label n. ca, resn
use:
label n. ca, one_letter[resn]
or: ( to get something like D85)
label n. ca, "%s%s" %(one_letter[resn],resi)
See Also
All the settings posted above.