<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.pymol.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Krother</id>
	<title>PyMOL Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.pymol.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Krother"/>
	<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php/Special:Contributions/Krother"/>
	<updated>2026-04-19T13:52:06Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Category:Modeling_and_Editing_Structures&amp;diff=3845</id>
		<title>Category:Modeling and Editing Structures</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Category:Modeling_and_Editing_Structures&amp;diff=3845"/>
		<updated>2006-12-14T13:42:35Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Modeling in PyMOL=&lt;br /&gt;
&lt;br /&gt;
==Saving with transformed coordinates==&lt;br /&gt;
&lt;br /&gt;
Here is a simple script that saves the molecule with coordinates from the current orientation.&lt;br /&gt;
(invoke it with 'run save_transformed.py' and type the new save_transformed.py command thereafter).&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
# Adds the command save_transformed&lt;br /&gt;
# Usage: save_transformed object, file&lt;br /&gt;
def save_transformed(object,file):&lt;br /&gt;
    m = cmd.get_view(0)&lt;br /&gt;
    ttt = [m[0], m[1], m[2], 0.0,&lt;br /&gt;
           m[3], m[4], m[5], 0.0,&lt;br /&gt;
           m[6], m[7], m[8], 0.0,&lt;br /&gt;
           0.0,   0.0,  0.0, 1.0]&lt;br /&gt;
    cmd.transform_object(object,ttt)&lt;br /&gt;
    cmd.save(file,object)&lt;br /&gt;
&lt;br /&gt;
cmd.extend('save_transformed',save_transformed)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Translate or rotate individual objects==&lt;br /&gt;
There is a &amp;quot;translate&amp;quot; function similar to &amp;quot;rotate&amp;quot;, the docs for these don't exist yet, because the implementation isn't finished. However, feel free to use them in the following forms:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
translate vector,object-name,state&lt;br /&gt;
   (vector needs to be something like [x,y,z])&lt;br /&gt;
&lt;br /&gt;
   translate [1,0,0],pept&lt;br /&gt;
&lt;br /&gt;
rotate axis,angle,object-name,state&lt;br /&gt;
   (axis can be either the letter x,y,z or a 3D vector [x,y,z])&lt;br /&gt;
   rotate x,90,pept&lt;br /&gt;
   rotate [1,1,1],10,pept&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Moving one segment relative to the rest==&lt;br /&gt;
&lt;br /&gt;
This means moving two parts of one object into different directions. The easiest way to do this is to split the objects and then use the rotate command.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load 1FJ1.pdb&lt;br /&gt;
&lt;br /&gt;
# split PDB file&lt;br /&gt;
&lt;br /&gt;
create anti=(chain F) &lt;br /&gt;
create fab=(chain A,B)&lt;br /&gt;
&lt;br /&gt;
# delete original object&lt;br /&gt;
delete 1FJ1&lt;br /&gt;
&lt;br /&gt;
# color objects&lt;br /&gt;
color green,fab&lt;br /&gt;
color pink,anti&lt;br /&gt;
&lt;br /&gt;
# color interface&lt;br /&gt;
select inter = (byres ((fab within 5 of anti)\&lt;br /&gt;
   or (anti within 5 of fab)))&lt;br /&gt;
&lt;br /&gt;
color yellow,inter&lt;br /&gt;
&lt;br /&gt;
# splay apart&lt;br /&gt;
orient&lt;br /&gt;
origin fab&lt;br /&gt;
rotate y,60,fab&lt;br /&gt;
origin anti&lt;br /&gt;
rotate y,-60, anti&lt;br /&gt;
&lt;br /&gt;
# zoom interface region&lt;br /&gt;
zoom inter&lt;br /&gt;
show sph,inter&lt;br /&gt;
disable inter&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
==Split states to objects==&lt;br /&gt;
There is also a new command in the 0.95 series:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
   split_states object-name&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
which will spread a PDB &amp;quot;biological unit&amp;quot; (or any multi-state object -- including SD files) over a series of independent objects. This makes it possible to interact with such objects more naturally than with &amp;quot;all_states = 1&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Altering secondary structures==&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
 alter A/10:34/, ss='H'&lt;br /&gt;
 alter A/35:40/, ss='L'&lt;br /&gt;
 alter A/41:60/, ss='S'&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
==Altering van der Waals radii==&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
alter (elem Fe),vdw=1.8&lt;br /&gt;
rebuild&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
(The value for Fe is wrecked in PyMOL at the moment, so running the above line might be a good idea).&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Altering atom coordinates==&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
alter_state 1,(pdb1cse),x=x-10.0 &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
The latter section can contain formulae involving at least the xyz coordinates, lots of constants and the (+-*/) operators.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Deleting bonds==&lt;br /&gt;
&lt;br /&gt;
Select the bond using Ctrl-right-click, then either&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
unbond pk1,pk2&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or hit Ctrl-D.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Converting D- to L- amino acids==&lt;br /&gt;
The inversion function was changed in version 0.95 to take advantage of multiple picked atoms. To invert a center, Ctrl-middle-click to pick the center atom as pk1 and two stationary atoms as pk2 and pk3. Then type Ctrl-E to invert.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Adding disulfide bonds==&lt;br /&gt;
You can use the [[Cmd bond]] command to attach them:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
bond 24/sg,26/sg&lt;br /&gt;
bond 56/sg,99/sg&lt;br /&gt;
unpick&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
(unpick will hide the bond baton which gets displayed.)&lt;br /&gt;
Additionally, the residue names can be changed for bonded cysteines:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
alter cys/,name='CYX'&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or for specific residues&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
alter 24+26+56+99/,name='CYX'&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Adding hydrogen bonds==&lt;br /&gt;
See 'displaying biochemical properties'.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Protonating ligands==&lt;br /&gt;
If your ligands come in with valid valencies and formal charges, PyMOL's h_add command can protonate ligands. (NOTE that there is a minor technical hiccup with SD-files which are loaded by default as immutable &amp;quot;discrete&amp;quot; objects.) Suffice it to say that in order to make changes to the chemical structure, an object must be loaded with the &amp;quot;discrete&amp;quot; flag set to zero.&lt;br /&gt;
Unfortunately, much of the molecular editing stuff remains to be documented. Here's an example sequence, but I'm not sure it will help to much...as indicated in the manual, this is immature functionality with some major gaps. Attach in particular is very limited...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
# show valences&lt;br /&gt;
set valence=0.05&lt;br /&gt;
&lt;br /&gt;
# load cysteine fragment&lt;br /&gt;
fragment cys&lt;br /&gt;
&lt;br /&gt;
# remove hydrogens&lt;br /&gt;
remove (hydro)&lt;br /&gt;
&lt;br /&gt;
# edit gamma S&lt;br /&gt;
edit cys////sg&lt;br /&gt;
&lt;br /&gt;
# add hydrogen&lt;br /&gt;
attach H,1,1&lt;br /&gt;
&lt;br /&gt;
# add planer, trivalent nitrogen onto C terminus&lt;br /&gt;
edit cys////C&lt;br /&gt;
attach N,3,3&lt;br /&gt;
&lt;br /&gt;
# edit that nitrogen&lt;br /&gt;
edit (elem N and neighbor cys////C)&lt;br /&gt;
&lt;br /&gt;
# attach a tetrahedral methyl (note random position)&lt;br /&gt;
attach C,4,4&lt;br /&gt;
&lt;br /&gt;
# here's an example of adding a whole residue from the library&lt;br /&gt;
edit cys////N&lt;br /&gt;
editor.attach_amino_acid(&amp;quot;pk1&amp;quot;,&amp;quot;ace&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
# now restore missing hydrogens (note that the names are off...)&lt;br /&gt;
h_add&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Superposition of two molecules==&lt;br /&gt;
Using pair_fit requires that you specify a set of paired atoms in each structure. Fortunately, you no longer have to specify each pair separately, so long as the ordering is the same in each selection (almost always true).&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
pair_fit ( trna10 and resid 10:15 and name P ), ( ref4 and resid 10:15 and name P )&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another example:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
pair_fit prot1///11-26/CA, prot2///34-49/CA&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
would superimpose prot1 on prot2 using C-alphas from residues 11-26 in prot1 and 34-49 in prot2.&lt;br /&gt;
&lt;br /&gt;
==Manual superposition of two molecules==&lt;br /&gt;
You can also align to structures using mouse rotation/translation. For this, you need to protect those molecules you don't want to move with (action menu -&amp;gt; movement -&amp;gt; protect) in the selection menu.&lt;br /&gt;
&lt;br /&gt;
Protect one object, deprotect the other, grab the deprotected object and move with Shift-Mouse. &lt;br /&gt;
Don't forget to  switch to Mouse Editing mode.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Adding and using your own fragments==&lt;br /&gt;
Pymol has some build-in fragments (amino acids and simple functional groups). You can add your own fragments, eg. sugars, in this way:&lt;br /&gt;
&lt;br /&gt;
Create the molecule you want to use as a fragment. Save it as a .pkl file in &amp;lt;pymol_path&amp;gt;/data/chempy/fragments.&lt;br /&gt;
&lt;br /&gt;
How to use the fragment:&lt;br /&gt;
&lt;br /&gt;
Pick the atom (ctrl-middle) where you want to add the fragment. This will usually be a hydrogen atom (which will be removed). Then use the command:&lt;br /&gt;
&lt;br /&gt;
 editor.attach_fragment('pk1','my_fragment_name',11,0)&lt;br /&gt;
&lt;br /&gt;
where my_fragment_name is the name of the pkl-file (w/o .pkl extension) and 11 is the number of the connecting (hydrogen) atom in the fragment. &lt;br /&gt;
To determine this number, press '[L]abel' -&amp;gt; 'atom identifiers' -&amp;gt; 'index' and choose the hydrogen atom you want.&lt;br /&gt;
&lt;br /&gt;
If you want a hotkey for your fragment, you can probably put it in &amp;lt;pymol_path&amp;gt;/modules/pmg_tk/skins/normal/__init__.py, but I haven't tried this.&lt;br /&gt;
&lt;br /&gt;
[[Category:Advanced Issues|Modeling and Editing Structures]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=PyMOLWiki:Community_Portal&amp;diff=453</id>
		<title>PyMOLWiki:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=PyMOLWiki:Community_Portal&amp;diff=453"/>
		<updated>2005-03-23T14:05:56Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== CP ==&lt;br /&gt;
Look here for ways to get involved in the PyMolWiki!&lt;br /&gt;
&lt;br /&gt;
Editors, you can upload images for your examples and supporting text!  Check out [[Special:Upload]].&lt;br /&gt;
&lt;br /&gt;
== Working with Categories ==&lt;br /&gt;
To assign pages to categories, use tags at the end of your page containing the category, sub-category and the page name.&lt;br /&gt;
&lt;br /&gt;
Example: There is a page 'Publication Quality Images' in the category 'Advanced Issues' and the sub-category 'Image Manipulation'. It has the tag:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[[Category:Advanced_Issues_Image_Manipulation|Publication Quality Images]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Helping ==&lt;br /&gt;
* Importing the email list content:  We have (lots) of email to sift through, extract data from and import into the Wiki&lt;br /&gt;
* If you feel you have the time to help import data into the PyMol wiki, please email [[User:Tree|Tree]].&lt;br /&gt;
&lt;br /&gt;
=== New! GeShi: Syntax Highlighting for Python &amp;amp; More ===&lt;br /&gt;
'''Update''': I have added the option for numbered syntax highlighting and non-numbered.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 &amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;Non line-numbered code here&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 &amp;lt;npython&amp;gt;line-numbered code here&amp;lt;/npython&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now with line numbers (or not)!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;npython&amp;gt;&lt;br /&gt;
 # axes.py&lt;br /&gt;
from pymol.cgo import *&lt;br /&gt;
from pymol import cmd&lt;br /&gt;
from pymol.vfont import plain&lt;br /&gt;
&lt;br /&gt;
# create the axes object, draw axes with cylinders coloured red, green,&lt;br /&gt;
#blue for X, Y and Z&lt;br /&gt;
&lt;br /&gt;
obj = [&lt;br /&gt;
   CYLINDER, 0., 0., 0., 50., 0., 0., 0.2, 1.0, 1.0, 1.0, 1.0, 0.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 50., 0., 0.2, 1.0, 1.0, 1.0, 0., 1.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 0., 50., 0.2, 1.0, 1.0, 1.0, 0., 0.0, 1.0,&lt;br /&gt;
   ]&lt;br /&gt;
&lt;br /&gt;
# add labels to axes object (requires pymol version 0.8 or greater, I&lt;br /&gt;
# believe&lt;br /&gt;
&lt;br /&gt;
cyl_text(obj,plain,[-5.,-5.,-1],'Origin',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[50.,0.,0.],'X',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,50.,0.],'Y',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,0.,50.],'Z',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
&lt;br /&gt;
# then we load it into PyMOL&lt;br /&gt;
cmd.load_cgo(obj,'axes')&lt;br /&gt;
&amp;lt;/npython&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See [http://qbnz.com/highlighter/index.php The Geshi Home Page]&lt;br /&gt;
&lt;br /&gt;
[[User:Tree|Tree]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Category:Uncategorized&amp;diff=3959</id>
		<title>Category:Uncategorized</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Category:Uncategorized&amp;diff=3959"/>
		<updated>2005-02-23T15:39:42Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
==Alter key bindings==&lt;br /&gt;
It's not GUI, but you could simply bind a function key such as F1 to a command:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
cmd.set_key('F1',lambda :cmd.show('sticks'))&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Category:Installation&amp;diff=3835</id>
		<title>Category:Installation</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Category:Installation&amp;diff=3835"/>
		<updated>2005-02-23T15:32:26Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Category:Installation&amp;diff=3834</id>
		<title>Category:Installation</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Category:Installation&amp;diff=3834"/>
		<updated>2005-02-23T15:29:59Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=OS Independent=&lt;br /&gt;
&lt;br /&gt;
[[Category:Installation|OS Independent]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Key_Wait&amp;diff=6222</id>
		<title>Key Wait</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Key_Wait&amp;diff=6222"/>
		<updated>2005-02-23T15:28:09Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
#use &amp;quot;spawn spawn_demo.py, local&amp;quot; to invoke this python script from&lt;br /&gt;
within pymol&lt;br /&gt;
wait=&amp;quot;&amp;quot;&lt;br /&gt;
i=0&lt;br /&gt;
while i &amp;lt; 12 and wait!=&amp;quot;x&amp;quot;:&lt;br /&gt;
  cmd.turn(&amp;quot;y&amp;quot;, 30)&lt;br /&gt;
  print &amp;quot;Press enter key to continue or x + enter to terminate&amp;quot;&lt;br /&gt;
  wait=raw_input()&lt;br /&gt;
  i=i+1&lt;br /&gt;
print &amp;quot;Done&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripting_Script_Library|Key Wait]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Color_Objects&amp;diff=7559</id>
		<title>Color Objects</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Color_Objects&amp;diff=7559"/>
		<updated>2005-02-23T15:21:49Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
#####################################################################&lt;br /&gt;
#&lt;br /&gt;
# Colour by object&lt;br /&gt;
#&lt;br /&gt;
#####################################################################&lt;br /&gt;
&lt;br /&gt;
def color_obj(rainbow=0):&lt;br /&gt;
&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        &lt;br /&gt;
AUTHOR &lt;br /&gt;
&lt;br /&gt;
        Gareth Stockwell&lt;br /&gt;
&lt;br /&gt;
USAGE&lt;br /&gt;
&lt;br /&gt;
        color_obj(rainbow=0)&lt;br /&gt;
&lt;br /&gt;
	This function colours each object currently in the PyMOL heirarchy&lt;br /&gt;
	with a different colour.  Colours used are either the 22 named&lt;br /&gt;
	colours used by PyMOL (in which case the 23rd object, if it exists,&lt;br /&gt;
	gets the same colour as the first), or are the colours of the rainbow&lt;br /&gt;
&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
	# Process arguments&lt;br /&gt;
	rainbow = int(rainbow)&lt;br /&gt;
&lt;br /&gt;
        # Get names of all PyMOL objects&lt;br /&gt;
	obj_list = cmd.get_names('models')&lt;br /&gt;
&lt;br /&gt;
	if rainbow:&lt;br /&gt;
&lt;br /&gt;
           print &amp;quot;\nColouring objects as rainbow\n&amp;quot;&lt;br /&gt;
&lt;br /&gt;
	   nobj = len(obj_list)&lt;br /&gt;
&lt;br /&gt;
	   # Create colours starting at blue(240) to red(0), using intervals&lt;br /&gt;
	   # of 240/(nobj-1)&lt;br /&gt;
	   for j in range(nobj):&lt;br /&gt;
	      hsv = (240-j*240/(nobj-1), 1, 1)&lt;br /&gt;
	      # Convert to RGB&lt;br /&gt;
	      rgb = hsv_to_rgb(hsv)&lt;br /&gt;
	      # Define the new colour&lt;br /&gt;
	      cmd.set_color(&amp;quot;col&amp;quot; + str(j), rgb)&lt;br /&gt;
	      print obj_list[j], rgb&lt;br /&gt;
	      # Colour the object&lt;br /&gt;
	      cmd.color(&amp;quot;col&amp;quot; + str(j), obj_list[j])&lt;br /&gt;
&lt;br /&gt;
	else:&lt;br /&gt;
&lt;br /&gt;
	   print &amp;quot;\nColouring objects using PyMOL defined colours\n&amp;quot;&lt;br /&gt;
&lt;br /&gt;
	   # List of available colours&lt;br /&gt;
	   colours = ['red', 'green', 'blue', 'yellow', 'violet', 'cyan',    \&lt;br /&gt;
           'salmon', 'lime', 'pink', 'slate', 'magenta', 'orange', 'marine', \&lt;br /&gt;
	   'olive', 'purple', 'teal', 'forest', 'firebrick', 'chocolate',    \&lt;br /&gt;
	   'wheat', 'white', 'grey' ]&lt;br /&gt;
	   ncolours = len(colours)&lt;br /&gt;
&lt;br /&gt;
	   # Loop over objects&lt;br /&gt;
	   i = 0&lt;br /&gt;
	   for obj in obj_list:&lt;br /&gt;
	      print &amp;quot;  &amp;quot;, obj, colours[i]&lt;br /&gt;
	      cmd.color(colours[i], obj)&lt;br /&gt;
	      i = i+1&lt;br /&gt;
	      if(i == ncolours):&lt;br /&gt;
	         i = 0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# HSV to RGB routine taken from Robert L. Campbell's color_b.py script&lt;br /&gt;
#   See http://biophysics.med.jhmi.edu/rlc/work/pymol/&lt;br /&gt;
# Original algorithm from: http://www.cs.rit.edu/~ncs/color/t_convert.html&lt;br /&gt;
def hsv_to_rgb(hsv):&lt;br /&gt;
&lt;br /&gt;
        h = float(hsv[0])&lt;br /&gt;
        s = float(hsv[1])&lt;br /&gt;
        v = float(hsv[2])&lt;br /&gt;
&lt;br /&gt;
        if( s == 0 ) :&lt;br /&gt;
                #achromatic (grey)&lt;br /&gt;
                r = g = b = v&lt;br /&gt;
&lt;br /&gt;
        else:&lt;br /&gt;
                # sector 0 to 5&lt;br /&gt;
                h = h/60.            &lt;br /&gt;
                i = int(h)&lt;br /&gt;
                f = h - i                       # factorial part of h&lt;br /&gt;
                #print h,i,f&lt;br /&gt;
                p = v * ( 1 - s )&lt;br /&gt;
                q = v * ( 1 - s * f )&lt;br /&gt;
                t = v * ( 1 - s * ( 1 - f ) )&lt;br /&gt;
&lt;br /&gt;
                if i == 0:&lt;br /&gt;
                        (r,g,b) = (v,t,p)&lt;br /&gt;
                elif i == 1:&lt;br /&gt;
                        (r,g,b) = (q,v,p)&lt;br /&gt;
                elif i == 2:&lt;br /&gt;
                        (r,g,b) = (p,v,t)&lt;br /&gt;
                elif i == 3:&lt;br /&gt;
                        (r,g,b) = (p,q,v)&lt;br /&gt;
                elif i == 4:&lt;br /&gt;
                        (r,g,b) = (t,p,v)&lt;br /&gt;
                elif i == 5:&lt;br /&gt;
                        (r,g,b) = (v,p,q)&lt;br /&gt;
                else:&lt;br /&gt;
                        (r,g,b) = (v,v,v)&lt;br /&gt;
                        print &amp;quot;error, i not equal 1-5&amp;quot;&lt;br /&gt;
&lt;br /&gt;
        return [r,g,b]&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
# Add color_obj to the PyMOL command list &lt;br /&gt;
cmd.extend(&amp;quot;color_obj&amp;quot;,color_obj)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripting_Script_Library|Color Objects]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Read_PDB-String&amp;diff=10017</id>
		<title>Read PDB-String</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Read_PDB-String&amp;diff=10017"/>
		<updated>2005-02-23T15:18:18Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
delete all&lt;br /&gt;
cmd.read_pdbstr(&amp;quot;&amp;quot;&amp;quot;HEADER    CREATED BY CONVERTPROSPECT              27-JAN-02   2tnf  \&lt;br /&gt;
REMARK   1                                                                       \&lt;br /&gt;
ATOM      1  N   PRO A   9       1.895  67.213 -38.182  1.00  0.00           N   \&lt;br /&gt;
ATOM      2  CA  PRO A   9       1.703  68.680 -38.402  1.00  0.00           C   \&lt;br /&gt;
....&lt;br /&gt;
ATOM   1153  C   GLY A 157       6.927  59.108 -38.901  1.00  6.00           C   \&lt;br /&gt;
ATOM   1154  O   GLY A 157       6.700  59.292 -37.676  1.00  6.00           O   \&lt;br /&gt;
TER    1155      GLY A 157                                                       \&lt;br /&gt;
MASTER                                                                           \&lt;br /&gt;
END                                                                              \&lt;br /&gt;
&amp;quot;&amp;quot;&amp;quot;,&amp;quot;2tnfa&amp;quot;)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripting_Script_Library|Read PDB-String]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Get_Coordinates_II&amp;diff=5965</id>
		<title>Get Coordinates II</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Get_Coordinates_II&amp;diff=5965"/>
		<updated>2005-02-23T15:16:21Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
from pymol import cmd&lt;br /&gt;
from pymol import stored&lt;br /&gt;
&lt;br /&gt;
stored.xyz = []&lt;br /&gt;
cmd.iterate_state(1,&amp;quot;pept&amp;quot;,&amp;quot;stored.xyz.append([x,y,z])&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
# at this point, stored.xyz is a native Python array holding&lt;br /&gt;
# the coordinates, which you can modify as required&lt;br /&gt;
&lt;br /&gt;
stored.xyz = map(lambda v:[-v[1],v[0],v[2]],stored.xyz)&lt;br /&gt;
&lt;br /&gt;
# and now you can update the internal coordinate sets&lt;br /&gt;
&lt;br /&gt;
cmd.alter_state(1,&amp;quot;pept&amp;quot;,&amp;quot;(x,y,z)=stored.xyz.pop(0)&amp;quot;)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripting_Script_Library|Get Coordinates II]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Get_Coordinates_I&amp;diff=13365</id>
		<title>Get Coordinates I</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Get_Coordinates_I&amp;diff=13365"/>
		<updated>2005-02-23T15:15:20Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
from pymol import cmd&lt;br /&gt;
&lt;br /&gt;
model = cmd.get_model(&amp;quot;pept&amp;quot;)&lt;br /&gt;
for a in model.atom:&lt;br /&gt;
   a.coord=[ -a.coord[1], a.coord[0], a.coord[2]]&lt;br /&gt;
&lt;br /&gt;
cmd.load_model(model,&amp;quot;tmp&amp;quot;)&lt;br /&gt;
cmd.update(&amp;quot;pept&amp;quot;,&amp;quot;tmp&amp;quot;)&lt;br /&gt;
cmd.delete(&amp;quot;tmp&amp;quot;)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripting_Script_Library|Get Coordinates I]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Selection_Exists&amp;diff=9717</id>
		<title>Selection Exists</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Selection_Exists&amp;diff=9717"/>
		<updated>2005-02-23T15:10:15Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
#&lt;br /&gt;
# The function below will return true if the selection is defined.&lt;br /&gt;
#&lt;br /&gt;
from pymol import cmd&lt;br /&gt;
from types import *&lt;br /&gt;
&lt;br /&gt;
def sele_exists(sele):&lt;br /&gt;
    sess = cmd.get_session()&lt;br /&gt;
    for i in sess[&amp;quot;names&amp;quot;]:&lt;br /&gt;
        if type(i) is ListType:&lt;br /&gt;
            if sele==i[0]:&lt;br /&gt;
                return 1&lt;br /&gt;
    return 0&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripting_Script_Library|Selection Exists]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Split_Movement&amp;diff=8933</id>
		<title>Split Movement</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Split_Movement&amp;diff=8933"/>
		<updated>2005-02-23T15:03:14Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load 1FJ1.pdb&lt;br /&gt;
&lt;br /&gt;
# split PDB file&lt;br /&gt;
&lt;br /&gt;
create anti=(chain F) &lt;br /&gt;
create fab=(chain A,B)&lt;br /&gt;
&lt;br /&gt;
# delete original object&lt;br /&gt;
delete 1FJ1&lt;br /&gt;
&lt;br /&gt;
# color objects&lt;br /&gt;
color green,fab&lt;br /&gt;
color pink,anti&lt;br /&gt;
&lt;br /&gt;
# color interface&lt;br /&gt;
select inter = (byres ((fab within 5 of anti)\&lt;br /&gt;
   or (anti within 5 of fab)))&lt;br /&gt;
&lt;br /&gt;
color yellow,inter&lt;br /&gt;
&lt;br /&gt;
# splay apart&lt;br /&gt;
orient&lt;br /&gt;
origin fab&lt;br /&gt;
rotate y,60,fab&lt;br /&gt;
origin anti&lt;br /&gt;
rotate y,-60, anti&lt;br /&gt;
&lt;br /&gt;
# zoom interface region&lt;br /&gt;
zoom inter&lt;br /&gt;
show sph,inter&lt;br /&gt;
disable inter&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripting_Script_Library|Split Movement]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=List_Selection&amp;diff=6273</id>
		<title>List Selection</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=List_Selection&amp;diff=6273"/>
		<updated>2005-02-23T15:01:17Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
# Using PyMOL commands:&lt;br /&gt;
#&lt;br /&gt;
list=[]&lt;br /&gt;
iterate (name ca),list.append((resi,resn))&lt;br /&gt;
print list&lt;br /&gt;
&lt;br /&gt;
[('ASP', '1'), ('CYS', '2'), ('ALA', '3'), ('TRP', '4'), ('HIS', '5'), ('LEU',&lt;br /&gt;
 '6'), ('GLY', '7'), ('GLU', '8'), ('LEU', '9'), ('VAL', '10'), ('TRP', '11'), &lt;br /&gt;
('CYS', '12'), ('THR', '13')]&lt;br /&gt;
&lt;br /&gt;
#!/usr/bin/python&lt;br /&gt;
#&lt;br /&gt;
# as Python script:&lt;br /&gt;
#&lt;br /&gt;
from pymol import cmd,stored&lt;br /&gt;
stored.list=[]&lt;br /&gt;
cmd.iterate(&amp;quot;(name ca)&amp;quot;,&amp;quot;stored.list.append((resi,resn))&amp;quot;)&lt;br /&gt;
print stored.list&lt;br /&gt;
&lt;br /&gt;
[('1', 'ASP'), ('2', 'CYS'), ('3', 'ALA'), ('4', 'TRP'), ('5', 'HIS'), ('6', '&lt;br /&gt;
LEU'), ('7', 'GLY'), ('8', 'GLU'), ('9', 'LEU'), ('10', 'VAL'), ('11', 'TRP'), &lt;br /&gt;
('12', 'CYS'), ('13', 'THR')]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
[[Category:Scripting_Script_Library|List Selection]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=List_Selection&amp;diff=6272</id>
		<title>List Selection</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=List_Selection&amp;diff=6272"/>
		<updated>2005-02-23T15:01:01Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
# Using PyMOL commands:&lt;br /&gt;
#&lt;br /&gt;
list=[]&lt;br /&gt;
iterate (name ca),list.append((resi,resn))&lt;br /&gt;
print list&lt;br /&gt;
&lt;br /&gt;
[('ASP', '1'), ('CYS', '2'), ('ALA', '3'), ('TRP', '4'), ('HIS', '5'), ('LEU',&lt;br /&gt;
 '6'), ('GLY', '7'), ('GLU', '8'), ('LEU', '9'), ('VAL', '10'), ('TRP', '11'), &lt;br /&gt;
('CYS', '12'), ('THR', '13')]&lt;br /&gt;
&lt;br /&gt;
#!/usr/bin/python&lt;br /&gt;
#&lt;br /&gt;
# as Python script:&lt;br /&gt;
#&lt;br /&gt;
from pymol import cmd,stored&lt;br /&gt;
stored.list=[]&lt;br /&gt;
cmd.iterate(&amp;quot;(name ca)&amp;quot;,&amp;quot;stored.list.append((resi,resn))&amp;quot;)&lt;br /&gt;
print stored.list&lt;br /&gt;
&lt;br /&gt;
[('1', 'ASP'), ('2', 'CYS'), ('3', 'ALA'), ('4', 'TRP'), ('5', 'HIS'), ('6', '&lt;br /&gt;
LEU'), ('7', 'GLY'), ('8', 'GLU'), ('9', 'LEU'), ('10', 'VAL'), ('11', 'TRP'), &lt;br /&gt;
('12', 'CYS'), ('13', 'THR')]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
[[Category:Scripting_Script_Library|List Selection]]&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=List_Selection&amp;diff=6271</id>
		<title>List Selection</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=List_Selection&amp;diff=6271"/>
		<updated>2005-02-23T15:00:44Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
# Using PyMOL commands:&lt;br /&gt;
#&lt;br /&gt;
list=[]&lt;br /&gt;
iterate (name ca),list.append((resi,resn))&lt;br /&gt;
print list&lt;br /&gt;
&lt;br /&gt;
[('ASP', '1'), ('CYS', '2'), ('ALA', '3'), ('TRP', '4'), ('HIS', '5'), ('LEU',&lt;br /&gt;
 '6'), ('GLY', '7'), ('GLU', '8'), ('LEU', '9'), ('VAL', '10'), ('TRP', '11'), &lt;br /&gt;
('CYS', '12'), ('THR', '13')]&lt;br /&gt;
&lt;br /&gt;
#!/usr/bin/python&lt;br /&gt;
#&lt;br /&gt;
# as Python script:&lt;br /&gt;
#&lt;br /&gt;
from pymol import cmd,stored&lt;br /&gt;
stored.list=[]&lt;br /&gt;
cmd.iterate(&amp;quot;(name ca)&amp;quot;,&amp;quot;stored.list.append((resi,resn))&amp;quot;)&lt;br /&gt;
print stored.list&lt;br /&gt;
&lt;br /&gt;
[('1', 'ASP'), ('2', 'CYS'), ('3', 'ALA'), ('4', 'TRP'), ('5', 'HIS'), ('6', '&lt;br /&gt;
LEU'), ('7', 'GLY'), ('8', 'GLU'), ('9', 'LEU'), ('10', 'VAL'), ('11', 'TRP'), &lt;br /&gt;
('12', 'CYS'), ('13', 'THR')]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripting_Script_Library|List Selection]]&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=CGO_Text&amp;diff=6513</id>
		<title>CGO Text</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=CGO_Text&amp;diff=6513"/>
		<updated>2005-02-22T14:32:14Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
# draw text using cgo&lt;br /&gt;
from pymol import cmd&lt;br /&gt;
from pymol.cgo import *&lt;br /&gt;
from pymol.vfont import plain&lt;br /&gt;
&lt;br /&gt;
cgo = []&lt;br /&gt;
&lt;br /&gt;
axes = [[2.0,0.0,0.0],[0.0,2.0,0.0],[0.0,0.0,2.0]]&lt;br /&gt;
&lt;br /&gt;
pos = [0.0,0.0,0.0]&lt;br /&gt;
wire_text(cgo,plain,pos,'Hello World',axes)&lt;br /&gt;
&lt;br /&gt;
pos = [0.0,-3.0,0.0]&lt;br /&gt;
cyl_text(cgo,plain,pos,'Hello Universe',0.10,axes=axes)&lt;br /&gt;
&lt;br /&gt;
cmd.set(&amp;quot;cgo_line_radius&amp;quot;,0.03)&lt;br /&gt;
cmd.load_cgo(cgo,'txt')&lt;br /&gt;
cmd.zoom(&amp;quot;all&amp;quot;,2.0)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Axes&amp;diff=4223</id>
		<title>Axes</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Axes&amp;diff=4223"/>
		<updated>2005-02-22T14:30:40Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
# axes.py&lt;br /&gt;
from pymol.cgo import *&lt;br /&gt;
from pymol import cmd&lt;br /&gt;
from pymol.vfont import plain&lt;br /&gt;
&lt;br /&gt;
# create the axes object, draw axes with cylinders coloured red, green,&lt;br /&gt;
#blue for X, Y and Z&lt;br /&gt;
&lt;br /&gt;
obj = [&lt;br /&gt;
   CYLINDER, 0., 0., 0., 10., 0., 0., 0.2, 1.0, 1.0, 1.0, 1.0, 0.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 10., 0., 0.2, 1.0, 1.0, 1.0, 0., 1.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 0., 10., 0.2, 1.0, 1.0, 1.0, 0., 0.0, 1.0,&lt;br /&gt;
   ]&lt;br /&gt;
&lt;br /&gt;
# add labels to axes object (requires pymol version 0.8 or greater, I&lt;br /&gt;
# believe&lt;br /&gt;
&lt;br /&gt;
cyl_text(obj,plain,[-5.,-5.,-1],'Origin',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[10.,0.,0.],'X',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,10.,0.],'Y',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,0.,10.],'Z',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
&lt;br /&gt;
# then we load it into PyMOL&lt;br /&gt;
cmd.load_cgo(obj,'axes')&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Axes&amp;diff=4222</id>
		<title>Axes</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Axes&amp;diff=4222"/>
		<updated>2005-02-22T14:29:52Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# axes.py&lt;br /&gt;
from pymol.cgo import *&lt;br /&gt;
from pymol import cmd&lt;br /&gt;
from pymol.vfont import plain&lt;br /&gt;
&lt;br /&gt;
# create the axes object, draw axes with cylinders coloured red, green,&lt;br /&gt;
#blue for X, Y and Z&lt;br /&gt;
&lt;br /&gt;
obj = [&lt;br /&gt;
   CYLINDER, 0., 0., 0., 10., 0., 0., 0.2, 1.0, 1.0, 1.0, 1.0, 0.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 10., 0., 0.2, 1.0, 1.0, 1.0, 0., 1.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 0., 10., 0.2, 1.0, 1.0, 1.0, 0., 0.0, 1.0,&lt;br /&gt;
   ]&lt;br /&gt;
&lt;br /&gt;
# add labels to axes object (requires pymol version 0.8 or greater, I&lt;br /&gt;
# believe&lt;br /&gt;
&lt;br /&gt;
cyl_text(obj,plain,[-5.,-5.,-1],'Origin',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[10.,0.,0.],'X',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,10.,0.],'Y',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,0.,10.],'Z',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
&lt;br /&gt;
# then we load it into PyMOL&lt;br /&gt;
cmd.load_cgo(obj,'axes')&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=PyMOLWiki:Community_Portal&amp;diff=447</id>
		<title>PyMOLWiki:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=PyMOLWiki:Community_Portal&amp;diff=447"/>
		<updated>2005-02-22T14:26:08Z</updated>

		<summary type="html">&lt;p&gt;Krother: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== CP ==&lt;br /&gt;
Look here for ways to get involved in the PyMolWiki!&lt;br /&gt;
&lt;br /&gt;
== Helping ==&lt;br /&gt;
* A wiki edit/user policy is needed.&lt;br /&gt;
* Graphic design and CSS layout: We need logos, BG images and CSS layout&lt;br /&gt;
* Importing the email list content:  We have (lots) of email to sift through, extract data from and import into the Wiki&lt;br /&gt;
* If you feel you have the time to help import data into the PyMol wiki, please email [[User:Tree|Tree]].&lt;br /&gt;
&lt;br /&gt;
=== Categories/Content ===&lt;br /&gt;
You may now add content to the wiki.  This is a semi-structured wiki in that the categories are pseudo-hierarchically linked.  &lt;br /&gt;
If you feel we're missing a category, please find where it would most logically fit, add it to the main page via the [[Top Level Schema Policy]].&lt;br /&gt;
&lt;br /&gt;
== Section Layout ==&lt;br /&gt;
Please see [[:Talk:Main Page|Discussion]] for more thoughts on the site organizaiton.&lt;br /&gt;
&lt;br /&gt;
=== Layout Schema ===&lt;br /&gt;
# [[:Category:News|News]]&lt;br /&gt;
## [[:Category:News Discussion|Discussion]]&lt;br /&gt;
## [[:Category:News PyMol Beta|PyMol Beta]]&lt;br /&gt;
# [[:Category:Technical Issues|Technical Issues]]&lt;br /&gt;
## [[:Category:Technical Issues Installation|Installation]]&lt;br /&gt;
### [[:Category:Technical Issues Installation OS Dependent|OS Dependent]]&lt;br /&gt;
#### [[:Category:Technical Issues Installation OS Dependent Linux|Linux]]&lt;br /&gt;
#### [[:Category:Technical Issues Installation OS Dependent MAC|MAC]]&lt;br /&gt;
#### [[:Category:Technical Issues Installation OS Dependent Windows|Windows]]&lt;br /&gt;
# [[:Category:Launching PyMOL|Launching PyMOL]]&lt;br /&gt;
## [[:Category:Launching PyMOL Command Line Options| Command Line Options]]&lt;br /&gt;
## [[:Category:Launching PyMOL Launching From a Script|Launching From a Script]]&lt;br /&gt;
# [[:Category:Using Pymol|Using PyMol]]&lt;br /&gt;
## [[:Category:Using Pymol Mouse Controls|Mouse Controls]]&lt;br /&gt;
## [[:Category:Using Pymol Objects and Selections|Objects and Selections]]&lt;br /&gt;
### [[:Category:Using Pymol Objects and Selections Working with Objects|Working with Objects]]&lt;br /&gt;
### [[:Category:Using Pymol Objects and Selections Working with Selections|Working with Selections]]&lt;br /&gt;
### [[:Category:Using Pymol Objects and Selections Selector Quick Reference|Selector Quick Reference]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Selector Quick Reference Single-word Selectors|Single-word Selectors]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Selector Quick Reference Property Selectors|Property Selectors]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Selector Quick Reference Selection Algebra|Selection Algebra]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Selector Quick Reference Selection Macros|Selection Macros]]&lt;br /&gt;
### [[:Category:Using Pymol Objects and Selections Representations|Representations]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Lines|Lines]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Sticks|Sticks]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Cartoon|Cartoon]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Surface|Surface]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Mesh|Mesh]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Spheres|Spheres]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Dots|Dots]]&lt;br /&gt;
### [[:Category:Using Pymol Objects and Selections Color|Color]]&lt;br /&gt;
### [[:Category:Using Pymol Objects and Selections Displaying Biochemical Properties|Displaying biochemical properties]]&lt;br /&gt;
## [[:Category:Using Pymol Display Settings|Display Settings]]&lt;br /&gt;
## [[:Category:Using Pymol Stereo 3D Display|Stereo 3D Display]] -- wrong place&lt;br /&gt;
### [[:Category:Using Pymol Hardware Options|Hardware Options]] -- wrong place?&lt;br /&gt;
### [[Linux XFree86 Configuration]] -- wrong place&lt;br /&gt;
## [[:Category:Using Pymol Scenes|Scenes]]&lt;br /&gt;
## [[:Category:Using Pymol Mouse Settings|Mouse Settings]]&lt;br /&gt;
## [[:Category:Using Pymol Wizards|Wizards]]&lt;br /&gt;
## [[:Category:Using Pymol Ray-tracing|Ray-tracing]]&lt;br /&gt;
## [[:Category:Using Pymol Settings Reference|Settings Reference]]&lt;br /&gt;
## [[:Category:Using Pymol Movies and Animations|Movies and Animations]]&lt;br /&gt;
## [[:Category:Using Pymol Structure Alignment|Structure Alignment]]&lt;br /&gt;
## [[:Category:Using Pymol Structure Alignment Editor|Structure Alignment Editor]]&lt;br /&gt;
# [[:Category:Commands|Command Language]]&lt;br /&gt;
## [[:Category:Commands PyMOL Command Script|PyMOL Command Script]]&lt;br /&gt;
## [[:Category:Commands PyMOL Python API|PyMOL Python API]]&lt;br /&gt;
# [[:Category:Advanced Issues|Advanced Issues]]&lt;br /&gt;
## [[:Category:Advanced Issues Modeling and Editing Structures|Modeling and editing structures]]&lt;br /&gt;
### [[:Category:Advanced Issues Modeling and Editing Structures Editing atoms|Editing Atoms]]&lt;br /&gt;
### [[:Category:Advanced Issues Modeling and Editing Structures Molecular Sculpting|Molecular sculpting]]&lt;br /&gt;
### [[:Category:Advanced Issues Modeling and Editing Structures Homology Modeling|Homology modeling]]&lt;br /&gt;
## [[:Category:Advanced Issues Image Manipulation|Image Manipulation]]&lt;br /&gt;
### [[:Category:Advanced Issues Image Manipulation labels|labels]]&lt;br /&gt;
### [[:Category:Advanced Issues Image Manipulation Photoshop and GIMP|Photoshop/GIMP]]&lt;br /&gt;
### [[:Category:Advanced Issues Image Manipulation Stereo Figures|Stereo Figures]]&lt;br /&gt;
### [[:Category:Advanced Issues Image Manipulation Publication Quatlity Images|Publication-quality images]]&lt;br /&gt;
# [[:Category:Scripting|Scripting]]&lt;br /&gt;
## [[:Category:Scripting Example Scripts|Example Scripts]]&lt;br /&gt;
## [[:Category:Scripting Script Library|Script Library]]&lt;br /&gt;
# [[:Category:Plugins|Plugins]]&lt;br /&gt;
## [[:Category:Plugins Electrostatics and Energy Minimization| How to do electrostatics and energy minimization.]]&lt;br /&gt;
### [[:Category:Plugins Electrostatics and Energy Minimization APBS| APBS Plugin]]&lt;br /&gt;
## [[:Category:Plugins rtools | rtools]]&lt;br /&gt;
## [[:Category:Plugins Tutorial|Tutorial on writing plugins]]&lt;br /&gt;
## [[:Category:Plugins Others| Others]]&lt;br /&gt;
# [[:Category:High-Level Applications|High-Level Applications]]&lt;br /&gt;
## [[:Category:High-Level Applications Crystallography Applications|Crystallography Applications]]&lt;br /&gt;
### [[:Category:High-Level Applications Symmetry|Symmetry]]&lt;br /&gt;
### [[:Category:High-Level Applications Electron Density|Electron Density]]&lt;br /&gt;
## [[:Category:High-Level Applications NMR Applications|NMR Applications]]&lt;br /&gt;
### [[:Category:High-Level Applications NMR Applications Working with a Family of Structures|Working with Structure Families]]&lt;br /&gt;
### [[:Category:High-Level Applications NMR Applications Superimposition and RMSD|Superimposition and RMSD]]&lt;br /&gt;
### [[:Category:High-Level Applications NMR Applications NMR Restraints Analysis|NMR Restraints and Analysis]]&lt;br /&gt;
# [[:Category:Third Party Software|Third Party Software]]&lt;br /&gt;
## [[:Category:Third Party Software PovRay|PovRay]]&lt;br /&gt;
## [[:Category:Third Party Software Movies|Movies]]&lt;br /&gt;
## [[:Category:Third Party Software Codecs|Codecs]]&lt;br /&gt;
# [[:Category:Python Integration|Python Integration]]&lt;br /&gt;
# [[:Category:Using PyMol For Unintended Uses|Unintended Uses]] (OpenGL Object Renderer)&lt;br /&gt;
## [[:Category:Using PyMol For Unintended Uses Arbitrary Graphics Objects| Arbitrary Graphics Objects]]&lt;br /&gt;
# [[:Category:Uncategorized|Uncategorized]] For new pages, misplaced pages, etc.&lt;br /&gt;
----&lt;br /&gt;
[[User:Tree|Tree]] 02:09, 16 Feb 2005 (CST)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== New! GeShi: Syntax Highlighting for Python &amp;amp; More ===&lt;br /&gt;
We now have a syntax highlighter installed.  It now supports something like 28 programming languages!  When you paste your code simply wrap it in&lt;br /&gt;
&amp;amp;lt;language_name&amp;amp;gt; ... code here ... &amp;amp;lt;/language_name&amp;amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
Here's an example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;python&amp;amp;gt;&lt;br /&gt;
  # axes.py&lt;br /&gt;
from pymol.cgo import *&lt;br /&gt;
from pymol import cmd&lt;br /&gt;
from pymol.vfont import plain&lt;br /&gt;
&lt;br /&gt;
# create the axes object, draw axes with cylinders coloured red, green,&lt;br /&gt;
#blue for X, Y and Z&lt;br /&gt;
&lt;br /&gt;
obj = [&lt;br /&gt;
   CYLINDER, 0., 0., 0., 50., 0., 0., 0.2, 1.0, 1.0, 1.0, 1.0, 0.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 50., 0., 0.2, 1.0, 1.0, 1.0, 0., 1.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 0., 50., 0.2, 1.0, 1.0, 1.0, 0., 0.0, 1.0,&lt;br /&gt;
   ]&lt;br /&gt;
&lt;br /&gt;
# add labels to axes object (requires pymol version 0.8 or greater, I&lt;br /&gt;
# believe&lt;br /&gt;
&lt;br /&gt;
cyl_text(obj,plain,[-5.,-5.,-1],'Origin',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[50.,0.,0.],'X',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,50.,0.],'Y',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,0.,50.],'Z',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
&lt;br /&gt;
# then we load it into PyMOL&lt;br /&gt;
cmd.load_cgo(obj,'axes')&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;python&amp;amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
gives us the code&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
 # axes.py&lt;br /&gt;
from pymol.cgo import *&lt;br /&gt;
from pymol import cmd&lt;br /&gt;
from pymol.vfont import plain&lt;br /&gt;
&lt;br /&gt;
# create the axes object, draw axes with cylinders coloured red, green,&lt;br /&gt;
#blue for X, Y and Z&lt;br /&gt;
&lt;br /&gt;
obj = [&lt;br /&gt;
   CYLINDER, 0., 0., 0., 50., 0., 0., 0.2, 1.0, 1.0, 1.0, 1.0, 0.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 50., 0., 0.2, 1.0, 1.0, 1.0, 0., 1.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 0., 50., 0.2, 1.0, 1.0, 1.0, 0., 0.0, 1.0,&lt;br /&gt;
   ]&lt;br /&gt;
&lt;br /&gt;
# add labels to axes object (requires pymol version 0.8 or greater, I&lt;br /&gt;
# believe&lt;br /&gt;
&lt;br /&gt;
cyl_text(obj,plain,[-5.,-5.,-1],'Origin',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[50.,0.,0.],'X',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,50.,0.],'Y',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,0.,50.],'Z',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
&lt;br /&gt;
# then we load it into PyMOL&lt;br /&gt;
cmd.load_cgo(obj,'axes')&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See [http://qbnz.com/highlighter/index.php The Geshi Home Page]&lt;br /&gt;
&lt;br /&gt;
[[User:Tree|Tree]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=PyMOLWiki:Community_Portal&amp;diff=446</id>
		<title>PyMOLWiki:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=PyMOLWiki:Community_Portal&amp;diff=446"/>
		<updated>2005-02-22T10:22:32Z</updated>

		<summary type="html">&lt;p&gt;Krother: /* Layout Schema */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== CP ==&lt;br /&gt;
Look here for ways to get involved in the PyMolWiki!&lt;br /&gt;
&lt;br /&gt;
== Helping ==&lt;br /&gt;
* A wiki edit/user policy is needed.&lt;br /&gt;
* Graphic design and CSS layout: We need logos, BG images and CSS layout&lt;br /&gt;
* Importing the email list content:  We have (lots) of email to sift through, extract data from and import into the Wiki&lt;br /&gt;
* If you feel you have the time to help import data into the PyMol wiki, please email [[User:Tree|Tree]].&lt;br /&gt;
&lt;br /&gt;
=== Categories/Content ===&lt;br /&gt;
You may now add content to the wiki.  This is a semi-structured wiki in that the categories are pseudo-hierarchically linked.  &lt;br /&gt;
If you feel we're missing a category, please find where it would most logically fit, add it to the main page via the [[Top Level Schema Policy]].&lt;br /&gt;
&lt;br /&gt;
== Section Layout ==&lt;br /&gt;
Please see [[:Talk:Main Page|Discussion]] for more thoughts on the site organizaiton.&lt;br /&gt;
&lt;br /&gt;
=== Layout Schema ===&lt;br /&gt;
# [[:Category:News|News]]&lt;br /&gt;
## [[:Category:News Discussion|Discussion]]&lt;br /&gt;
## [[:Category:News PyMol Beta|PyMol Beta]]&lt;br /&gt;
# [[:Category:Technical Issues|Technical Issues]]&lt;br /&gt;
## [[:Category:Technical Issues Installation|Installation]]&lt;br /&gt;
### [[:Category:Technical Issues Installation OS Dependent|OS Dependent]]&lt;br /&gt;
#### [[:Category:Technical Issues Installation OS Dependent Linux|Linux]]&lt;br /&gt;
#### [[:Category:Technical Issues Installation OS Dependent MAC|MAC]]&lt;br /&gt;
#### [[:Category:Technical Issues Installation OS Dependent Windows|Windows]]&lt;br /&gt;
# [[:Category:Launching PyMOL|Launching PyMOL]]&lt;br /&gt;
## [[:Category:Launching PyMOL Command Line Options| Command Line Options]]&lt;br /&gt;
## [[:Category:Launching PyMOL Launching From a Script|Launching From a Script]]&lt;br /&gt;
# [[:Category:Using Pymol|Using PyMol]]&lt;br /&gt;
## [[:Category:Using Pymol Mouse Controls|Mouse Controls]]&lt;br /&gt;
## [[:Category:Using Pymol Objects and Selections|Objects and Selections]]&lt;br /&gt;
### [[:Category:Using Pymol Objects and Selections Working with Objects|Working with Objects]]&lt;br /&gt;
### [[:Category:Using Pymol Objects and Selections Working with Selections|Working with Selections]]&lt;br /&gt;
### [[:Category:Using Pymol Objects and Selections Selector Quick Reference|Selector Quick Reference]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Selector Quick Reference Single-word Selectors|Single-word Selectors]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Selector Quick Reference Property Selectors|Property Selectors]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Selector Quick Reference Selection Algebra|Selection Algebra]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Selector Quick Reference Selection Macros|Selection Macros]]&lt;br /&gt;
### [[:Category:Using Pymol Objects and Selections Representations|Representations]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Lines|Lines]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Sticks|Sticks]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Cartoon|Cartoon]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Surface|Surface]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Mesh|Mesh]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Spheres|Spheres]]&lt;br /&gt;
#### [[:Category:Using Pymol Objects and Selections Representations Dots|Dots]]&lt;br /&gt;
### [[:Category:Using Pymol Objects and Selections Color|Color]]&lt;br /&gt;
### [[:Category:Using Pymol Objects and Selections Displaying Biochemical Properties|Displaying biochemical properties]]&lt;br /&gt;
## [[:Category:Using Pymol Display Settings|Display Settings]]&lt;br /&gt;
## [[:Category:Using Pymol Stereo 3D Display|Stereo 3D Display]] -- wrong place&lt;br /&gt;
### [[:Category:Using Pymol Hardware Options|Hardware Options]] -- wrong place?&lt;br /&gt;
### [[Linux XFree86 Configuration]] -- wrong place&lt;br /&gt;
## [[:Category:Using Pymol Scenes|Scenes]]&lt;br /&gt;
## [[:Category:Using Pymol Mouse Settings|Mouse Settings]]&lt;br /&gt;
## [[:Category:Using Pymol Wizards|Wizards]]&lt;br /&gt;
## [[:Category:Using Pymol Ray-tracing|Ray-tracing]]&lt;br /&gt;
## [[:Category:Using Pymol Settings Reference|Settings Reference]]&lt;br /&gt;
## [[:Category:Using Pymol Movies and Animations|Movies and Animations]]&lt;br /&gt;
## [[:Category:Using Pymol Structure Alignment|Structure Alignment]]&lt;br /&gt;
## [[:Category:Using Pymol Structure Alignment Editor|Structure Alignment Editor]]&lt;br /&gt;
# [[:Category:Commands|Command Language]]&lt;br /&gt;
## [[:Category:Commands PyMOL Command Script|PyMOL Command Script]]&lt;br /&gt;
## [[:Category:Commands PyMOL Python API|PyMOL Python API]]&lt;br /&gt;
# [[:Category:Advanced Issues|Advanced Issues]]&lt;br /&gt;
## [[:Category:Advanced Issues Modeling and Editing Structures|Modeling and editing structures]]&lt;br /&gt;
### [[:Category:Advanced Issues Modeling and Editing Structures Editing atoms|Editing Atoms]]&lt;br /&gt;
### [[:Category:Advanced Issues Modeling and Editing Structures Molecular Sculpting|Molecular sculpting]]&lt;br /&gt;
### [[:Category:Advanced Issues Modeling and Editing Structures Homology Modeling|Homology modeling]]&lt;br /&gt;
## [[:Category:Advanced Issues Image Manipulation|Image Manipulation]]&lt;br /&gt;
### [[:Category:Advanced Issues Image Manipulation labels|labels]]&lt;br /&gt;
### [[:Category:Advanced Issues Image Manipulation Photoshop and GIMP|Photoshop/GIMP]]&lt;br /&gt;
### [[:Category:Advanced Issues Image Manipulation Stereo Figures|Stereo Figures]]&lt;br /&gt;
### [[:Category:Advanced Issues Image Manipulation Publication Quatlity Images|Publication-quality images]]&lt;br /&gt;
# [[:Category:Scripting|Scripting]]&lt;br /&gt;
## [[:Category:Scripting Example Scripts|Example Scripts]]&lt;br /&gt;
## [[:Category:Scripting Script Library|Script Library]]&lt;br /&gt;
# [[:Category:Plugins|Plugins]]&lt;br /&gt;
## [[:Category:Plugins Electrostatics and Energy Minimization| How to do electrostatics and energy minimization.]]&lt;br /&gt;
### [[:Category:Plugins Electrostatics and Energy Minimization APBS| APBS Plugin]]&lt;br /&gt;
## [[:Category:Plugins rtools | rtools]]&lt;br /&gt;
## [[:Category:Plugins Tutorial|Tutorial on writing plugins]]&lt;br /&gt;
## [[:Category:Plugins Others| Others]]&lt;br /&gt;
# [[:Category:High-Level Applications|High-Level Applications]]&lt;br /&gt;
## [[:Category:High-Level Applications Crystallography Applications|Crystallography Applications]]&lt;br /&gt;
### [[:Category:High-Level Applications Symmetry|Symmetry]]&lt;br /&gt;
### [[:Category:High-Level Applications Electron Density|Electron Density]]&lt;br /&gt;
## [[:Category:High-Level Applications NMR Applications|NMR Applications]]&lt;br /&gt;
### [[:Category:High-Level Applications NMR Applications Working with a Family of Structures|Working with Structure Families]]&lt;br /&gt;
### [[:Category:High-Level Applications NMR Applications Superimposition and RMSD|Superimposition and RMSD]]&lt;br /&gt;
### [[:Category:High-Level Applications NMR Applications NMR Restraints Analysis|NMR Restraints and Analysis]]&lt;br /&gt;
# [[:Category:Third Party Software|Third Party Software]]&lt;br /&gt;
## [[:Category:Third Party Software Movies|Movies]]&lt;br /&gt;
## [[:Category:Third Party Software Codecs|Codecs]]&lt;br /&gt;
# [[:Category:Python Integration|Python Integration]]&lt;br /&gt;
# [[:Category:Using PyMol For Unintended Uses|Unintended Uses]] (OpenGL Object Renderer)&lt;br /&gt;
## [[:Category:Using PyMol For Unintended Uses Arbitrary Graphics Objects| Arbitrary Graphics Objects]]&lt;br /&gt;
# [[:Category:Uncategorized|Uncategorized]] For new pages, misplaced pages, etc.&lt;br /&gt;
----&lt;br /&gt;
[[User:Tree|Tree]] 02:09, 16 Feb 2005 (CST)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== New! GeShi: Syntax Highlighting for Python &amp;amp; More ===&lt;br /&gt;
We now have a syntax highlighter installed.  It now supports something like 28 programming languages!  When you paste your code simply wrap it in&lt;br /&gt;
&amp;amp;lt;language_name&amp;amp;gt; ... code here ... &amp;amp;lt;/language_name&amp;amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
Here's an example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;python&amp;amp;gt;&lt;br /&gt;
  # axes.py&lt;br /&gt;
from pymol.cgo import *&lt;br /&gt;
from pymol import cmd&lt;br /&gt;
from pymol.vfont import plain&lt;br /&gt;
&lt;br /&gt;
# create the axes object, draw axes with cylinders coloured red, green,&lt;br /&gt;
#blue for X, Y and Z&lt;br /&gt;
&lt;br /&gt;
obj = [&lt;br /&gt;
   CYLINDER, 0., 0., 0., 50., 0., 0., 0.2, 1.0, 1.0, 1.0, 1.0, 0.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 50., 0., 0.2, 1.0, 1.0, 1.0, 0., 1.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 0., 50., 0.2, 1.0, 1.0, 1.0, 0., 0.0, 1.0,&lt;br /&gt;
   ]&lt;br /&gt;
&lt;br /&gt;
# add labels to axes object (requires pymol version 0.8 or greater, I&lt;br /&gt;
# believe&lt;br /&gt;
&lt;br /&gt;
cyl_text(obj,plain,[-5.,-5.,-1],'Origin',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[50.,0.,0.],'X',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,50.,0.],'Y',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,0.,50.],'Z',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
&lt;br /&gt;
# then we load it into PyMOL&lt;br /&gt;
cmd.load_cgo(obj,'axes')&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;python&amp;amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
gives us the code&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
 # axes.py&lt;br /&gt;
from pymol.cgo import *&lt;br /&gt;
from pymol import cmd&lt;br /&gt;
from pymol.vfont import plain&lt;br /&gt;
&lt;br /&gt;
# create the axes object, draw axes with cylinders coloured red, green,&lt;br /&gt;
#blue for X, Y and Z&lt;br /&gt;
&lt;br /&gt;
obj = [&lt;br /&gt;
   CYLINDER, 0., 0., 0., 50., 0., 0., 0.2, 1.0, 1.0, 1.0, 1.0, 0.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 50., 0., 0.2, 1.0, 1.0, 1.0, 0., 1.0, 0.,&lt;br /&gt;
   CYLINDER, 0., 0., 0., 0., 0., 50., 0.2, 1.0, 1.0, 1.0, 0., 0.0, 1.0,&lt;br /&gt;
   ]&lt;br /&gt;
&lt;br /&gt;
# add labels to axes object (requires pymol version 0.8 or greater, I&lt;br /&gt;
# believe&lt;br /&gt;
&lt;br /&gt;
cyl_text(obj,plain,[-5.,-5.,-1],'Origin',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[50.,0.,0.],'X',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,50.,0.],'Y',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
cyl_text(obj,plain,[0.,0.,50.],'Z',0.20,axes=[[3,0,0],[0,3,0],[0,0,3]])&lt;br /&gt;
&lt;br /&gt;
# then we load it into PyMOL&lt;br /&gt;
cmd.load_cgo(obj,'axes')&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See [http://qbnz.com/highlighter/index.php The Geshi Home Page]&lt;br /&gt;
&lt;br /&gt;
[[User:Tree|Tree]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4492</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4492"/>
		<updated>2005-02-22T09:39:57Z</updated>

		<summary type="html">&lt;p&gt;Krother: Reverted edit of Krother, changed back to last version by Tree&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PyMol Wiki Home ==&lt;br /&gt;
You have reached the (new) home of the PyMolWiki, a user-driven web-oriented CMS.&lt;br /&gt;
&lt;br /&gt;
We (will) strive to provide&lt;br /&gt;
* updates on PyMol&lt;br /&gt;
* a stable user-oriented documentation base&lt;br /&gt;
* a thorough treatment of the PyMol program&lt;br /&gt;
* feature rich scripts for general PyMol use&lt;br /&gt;
&lt;br /&gt;
== Links of Interest ==&lt;br /&gt;
* Updated! [[PyMolWiki:Community_Portal| How to get involved!]] --read me if you want to add something&lt;br /&gt;
* [[:Category:Scripting Script Library| (Nascent) Script Library]] -- add one!&lt;br /&gt;
* [[:Category:Commands|PyMol Commands]]&lt;br /&gt;
* [[:Special:Allpages| All Pages]]&lt;br /&gt;
* [[:Category:Plugins|Plugins]]&lt;br /&gt;
* [[:Special:Categories| See All Categories]]&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4491</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4491"/>
		<updated>2005-02-22T09:38:59Z</updated>

		<summary type="html">&lt;p&gt;Krother: /* Links of Interest */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PyMol Wiki Home ==&lt;br /&gt;
You have reached the (new) home of the PyMolWiki, a user-driven web-oriented CMS.&lt;br /&gt;
&lt;br /&gt;
We (will) strive to provide&lt;br /&gt;
* updates on PyMol&lt;br /&gt;
* a stable user-oriented documentation base&lt;br /&gt;
* a thorough treatment of the PyMol program&lt;br /&gt;
* feature rich scripts for general PyMol use&lt;br /&gt;
&lt;br /&gt;
== Links of Interest ==&lt;br /&gt;
* Updated! [[PyMolWiki:Community_Portal| How to get involved!]] --read me if you want to add something&lt;br /&gt;
* [[:Category:Scripting Script Library| (Nascent) Script Library]] -- add one!&lt;br /&gt;
* [[:Category:Commands|PyMol Commands]]&lt;br /&gt;
* [[:Special:Allpages| All Pages]]&lt;br /&gt;
* [[:Category:Plugins|Plugins]]&lt;br /&gt;
* [[:Special:Categories| See All Categories]]&lt;br /&gt;
&lt;br /&gt;
== rtools Plugin ==&lt;br /&gt;
&lt;br /&gt;
Here, the rtools 7.0 documentation will come in. KR&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4426</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4426"/>
		<updated>2005-02-17T08:00:29Z</updated>

		<summary type="html">&lt;p&gt;Krother: /* Proposal for structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PyMol Wiki Home ==&lt;br /&gt;
You have reached the (new) home of the PyMolWiki, a user-driven web-oriented CMS.&lt;br /&gt;
&lt;br /&gt;
== Moving In ==&lt;br /&gt;
Please excuse the mess as we create the PyMolWiki site.  The wiki will be a valuable educational &amp;amp; reference tool for PyMol users.&lt;br /&gt;
&lt;br /&gt;
== Helping ==&lt;br /&gt;
If you feel like helping out, please login and get to work.  :-)  For design/layout purposes you must be logged in to edit pages.  We now need people to assist with&lt;br /&gt;
&lt;br /&gt;
* Wiki schema/design/organization: Below you'll find the current layout design&lt;br /&gt;
* Graphic design and CSS layout: We need logos, BG images and CSS layout&lt;br /&gt;
* Importing the email list content:  We have (lots) of email to sift through, extract data from and import into the Wiki&lt;br /&gt;
* Smoothing out the edges:  Editors are needed just to fix our typos!&lt;br /&gt;
* Etc...&lt;br /&gt;
&lt;br /&gt;
=== Editors Needed ===&lt;br /&gt;
If you feel you have the time to help import data into the PyMol wiki, please email [[User:Tree|Tree]].&lt;br /&gt;
&lt;br /&gt;
We need your help.  So join today &amp;amp; happy editing!&lt;br /&gt;
&lt;br /&gt;
[[User:Tree|Tree]]&lt;br /&gt;
&lt;br /&gt;
== [[Initial Wiki Layout Suggestion]] == (Warren Delano; [[User:Tree|Tree]]; Doug Kojetin; Michael George Werner; Kristian Rother; Nat Echols)&lt;br /&gt;
* [[Mouse Controls]]&lt;br /&gt;
* [[Command Language]]&lt;br /&gt;
* [[Atom Selections]]&lt;br /&gt;
* [[Ray-tracing]]&lt;br /&gt;
* [[Movies and Animations]]&lt;br /&gt;
* [[Cartoon Representations]]&lt;br /&gt;
* [[Settings Reference (all settings and what they do)]]&lt;br /&gt;
* [[Stereo 3D Display]]&lt;br /&gt;
** [[Hardware Options]]&lt;br /&gt;
** [[Linux XFree86 Configuration]]&lt;br /&gt;
* [[Crystallography Applications]]&lt;br /&gt;
** [[Symmetry]]&lt;br /&gt;
** [[Electron Density]]&lt;br /&gt;
* [[NMR Applications]]&lt;br /&gt;
** [[Working with a Family of Structures]]&lt;br /&gt;
** [[Superimposition and RMSD]]&lt;br /&gt;
** [[NMR Restraints Analysis]]&lt;br /&gt;
* [[Arbitrary Graphics Objects]]&lt;br /&gt;
* [[Python Integration]]&lt;br /&gt;
* [[Scenes]]&lt;br /&gt;
&lt;br /&gt;
* [[Installation]]&lt;br /&gt;
** [[Hardware Requirements]]&lt;br /&gt;
** [[Software Requirements]]&lt;br /&gt;
** [[OS Dependent]]&lt;br /&gt;
*** [[Linux]]&lt;br /&gt;
*** [[MAC]]&lt;br /&gt;
*** [[Windows]]&lt;br /&gt;
*** [[Script Library]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins/Modules]] &lt;br /&gt;
** [[APBS Plugin]]&lt;br /&gt;
** [[rtools Plugin]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins]] &lt;br /&gt;
** [[List of Plugins]]&lt;br /&gt;
** [[Tutorial on writing plugins]]&lt;br /&gt;
** [[Others]]&lt;br /&gt;
&lt;br /&gt;
* [[Structure Alignment]]&lt;br /&gt;
** [[Structure Alignment Editor]]&lt;br /&gt;
* [[3rd Party Applications]]&lt;br /&gt;
** [[Movies]]&lt;br /&gt;
** [[Codecs]]&lt;br /&gt;
&lt;br /&gt;
* [[Rendering molecules]]&lt;br /&gt;
** [[Basics of displaying molecules]]&lt;br /&gt;
** [[Coloring molecules]]&lt;br /&gt;
** [[Displaying biochemical properties]]&lt;br /&gt;
&lt;br /&gt;
* [[Modeling and editing structures. ]]&lt;br /&gt;
** [[Editing atoms]]&lt;br /&gt;
** [[Molecular sculpting]]&lt;br /&gt;
** [[Homology modeling]]&lt;br /&gt;
* [[How to do electrostatics and energy minimization.]]&lt;br /&gt;
* [[Launching PyMOL (has been asked often)]]&lt;br /&gt;
* [[Some kind of &amp;quot;script collection&amp;quot; would be very useful]]&lt;br /&gt;
* [[Creating publication-quality images HOWTO]]&lt;br /&gt;
&lt;br /&gt;
== [[Proposal for structure]] ==&lt;br /&gt;
Most of these points fall into some higher category. Here is a proposal how they could be arranged ([[User:Kristian Rother|krother]]):&lt;br /&gt;
* I. Technical issues (installation, hardware)&lt;br /&gt;
* II. Basic usage (controls, rendering, selections)&lt;br /&gt;
* III. Advanced issues (Ray tracing, settings, movies)&lt;br /&gt;
* IV. Scripting &lt;br /&gt;
* V. Plugins&lt;br /&gt;
* VI. High-level applications (Crystallography, NMR)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Tree|Tree]] 02:09, 16 Feb 2005 (CST)&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4425</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4425"/>
		<updated>2005-02-17T07:59:52Z</updated>

		<summary type="html">&lt;p&gt;Krother: /* Initial Wiki Layout Suggestion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PyMol Wiki Home ==&lt;br /&gt;
You have reached the (new) home of the PyMolWiki, a user-driven web-oriented CMS.&lt;br /&gt;
&lt;br /&gt;
== Moving In ==&lt;br /&gt;
Please excuse the mess as we create the PyMolWiki site.  The wiki will be a valuable educational &amp;amp; reference tool for PyMol users.&lt;br /&gt;
&lt;br /&gt;
== Helping ==&lt;br /&gt;
If you feel like helping out, please login and get to work.  :-)  For design/layout purposes you must be logged in to edit pages.  We now need people to assist with&lt;br /&gt;
&lt;br /&gt;
* Wiki schema/design/organization: Below you'll find the current layout design&lt;br /&gt;
* Graphic design and CSS layout: We need logos, BG images and CSS layout&lt;br /&gt;
* Importing the email list content:  We have (lots) of email to sift through, extract data from and import into the Wiki&lt;br /&gt;
* Smoothing out the edges:  Editors are needed just to fix our typos!&lt;br /&gt;
* Etc...&lt;br /&gt;
&lt;br /&gt;
=== Editors Needed ===&lt;br /&gt;
If you feel you have the time to help import data into the PyMol wiki, please email [[User:Tree|Tree]].&lt;br /&gt;
&lt;br /&gt;
We need your help.  So join today &amp;amp; happy editing!&lt;br /&gt;
&lt;br /&gt;
[[User:Tree|Tree]]&lt;br /&gt;
&lt;br /&gt;
== [[Initial Wiki Layout Suggestion]] == (Warren Delano; [[User:Tree|Tree]]; Doug Kojetin; Michael George Werner; Kristian Rother; Nat Echols)&lt;br /&gt;
* [[Mouse Controls]]&lt;br /&gt;
* [[Command Language]]&lt;br /&gt;
* [[Atom Selections]]&lt;br /&gt;
* [[Ray-tracing]]&lt;br /&gt;
* [[Movies and Animations]]&lt;br /&gt;
* [[Cartoon Representations]]&lt;br /&gt;
* [[Settings Reference (all settings and what they do)]]&lt;br /&gt;
* [[Stereo 3D Display]]&lt;br /&gt;
** [[Hardware Options]]&lt;br /&gt;
** [[Linux XFree86 Configuration]]&lt;br /&gt;
* [[Crystallography Applications]]&lt;br /&gt;
** [[Symmetry]]&lt;br /&gt;
** [[Electron Density]]&lt;br /&gt;
* [[NMR Applications]]&lt;br /&gt;
** [[Working with a Family of Structures]]&lt;br /&gt;
** [[Superimposition and RMSD]]&lt;br /&gt;
** [[NMR Restraints Analysis]]&lt;br /&gt;
* [[Arbitrary Graphics Objects]]&lt;br /&gt;
* [[Python Integration]]&lt;br /&gt;
* [[Scenes]]&lt;br /&gt;
&lt;br /&gt;
* [[Installation]]&lt;br /&gt;
** [[Hardware Requirements]]&lt;br /&gt;
** [[Software Requirements]]&lt;br /&gt;
** [[OS Dependent]]&lt;br /&gt;
*** [[Linux]]&lt;br /&gt;
*** [[MAC]]&lt;br /&gt;
*** [[Windows]]&lt;br /&gt;
*** [[Script Library]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins/Modules]] &lt;br /&gt;
** [[APBS Plugin]]&lt;br /&gt;
** [[rtools Plugin]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins]] &lt;br /&gt;
** [[List of Plugins]]&lt;br /&gt;
** [[Tutorial on writing plugins]]&lt;br /&gt;
** [[Others]]&lt;br /&gt;
&lt;br /&gt;
* [[Structure Alignment]]&lt;br /&gt;
** [[Structure Alignment Editor]]&lt;br /&gt;
* [[3rd Party Applications]]&lt;br /&gt;
** [[Movies]]&lt;br /&gt;
** [[Codecs]]&lt;br /&gt;
&lt;br /&gt;
* [[Rendering molecules]]&lt;br /&gt;
** [[Basics of displaying molecules]]&lt;br /&gt;
** [[Coloring molecules]]&lt;br /&gt;
** [[Displaying biochemical properties]]&lt;br /&gt;
&lt;br /&gt;
* [[Modeling and editing structures. ]]&lt;br /&gt;
** [[Editing atoms]]&lt;br /&gt;
** [[Molecular sculpting]]&lt;br /&gt;
** [[Homology modeling]]&lt;br /&gt;
* [[How to do electrostatics and energy minimization.]]&lt;br /&gt;
* [[Launching PyMOL (has been asked often)]]&lt;br /&gt;
* [[Some kind of &amp;quot;script collection&amp;quot; would be very useful]]&lt;br /&gt;
* [[Creating publication-quality images HOWTO]]&lt;br /&gt;
&lt;br /&gt;
== [[Proposal for structure]] ==&lt;br /&gt;
Most of these points fall into some higher category. Here is a proposal how they could be arranged [[User:Kristian Rother|krother]]:&lt;br /&gt;
* I. Technical issues (installation, hardware)&lt;br /&gt;
* II. Basic usage (controls, rendering, selections)&lt;br /&gt;
* III. Advanced issues (Ray tracing, settings, movies)&lt;br /&gt;
* IV. Scripting &lt;br /&gt;
* V. Plugins&lt;br /&gt;
* VI. High-level applications (Crystallography, NMR)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Tree|Tree]] 02:09, 16 Feb 2005 (CST)&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4424</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4424"/>
		<updated>2005-02-17T07:59:37Z</updated>

		<summary type="html">&lt;p&gt;Krother: /* Proposal for structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PyMol Wiki Home ==&lt;br /&gt;
You have reached the (new) home of the PyMolWiki, a user-driven web-oriented CMS.&lt;br /&gt;
&lt;br /&gt;
== Moving In ==&lt;br /&gt;
Please excuse the mess as we create the PyMolWiki site.  The wiki will be a valuable educational &amp;amp; reference tool for PyMol users.&lt;br /&gt;
&lt;br /&gt;
== Helping ==&lt;br /&gt;
If you feel like helping out, please login and get to work.  :-)  For design/layout purposes you must be logged in to edit pages.  We now need people to assist with&lt;br /&gt;
&lt;br /&gt;
* Wiki schema/design/organization: Below you'll find the current layout design&lt;br /&gt;
* Graphic design and CSS layout: We need logos, BG images and CSS layout&lt;br /&gt;
* Importing the email list content:  We have (lots) of email to sift through, extract data from and import into the Wiki&lt;br /&gt;
* Smoothing out the edges:  Editors are needed just to fix our typos!&lt;br /&gt;
* Etc...&lt;br /&gt;
&lt;br /&gt;
=== Editors Needed ===&lt;br /&gt;
If you feel you have the time to help import data into the PyMol wiki, please email [[User:Tree|Tree]].&lt;br /&gt;
&lt;br /&gt;
We need your help.  So join today &amp;amp; happy editing!&lt;br /&gt;
&lt;br /&gt;
[[User:Tree|Tree]]&lt;br /&gt;
&lt;br /&gt;
== [[Initial Wiki Layout Suggestion]] == (Warren Delano; [[User:Tree|Tree]]; Doug Kojetin; Michael George Werner; Kristian Rother; Nat Echols)&lt;br /&gt;
* [[Mouse Controls]]&lt;br /&gt;
* [[Command Language]]&lt;br /&gt;
* [[Atom Selections]]&lt;br /&gt;
* [[Ray-tracing]]&lt;br /&gt;
* [[Movies and Animations]]&lt;br /&gt;
* [[Cartoon Representations]]&lt;br /&gt;
* [[Settings Reference (all settings and what they do)]]&lt;br /&gt;
* [[Stereo 3D Display]]&lt;br /&gt;
** [[Hardware Options]]&lt;br /&gt;
** [[Linux XFree86 Configuration]]&lt;br /&gt;
* [[Crystallography Applications]]&lt;br /&gt;
** [[Symmetry]]&lt;br /&gt;
** [[Electron Density]]&lt;br /&gt;
* [[NMR Applications]]&lt;br /&gt;
** [[Working with a Family of Structures]]&lt;br /&gt;
** [[Superimposition and RMSD]]&lt;br /&gt;
** [[NMR Restraints Analysis]]&lt;br /&gt;
* [[Arbitrary Graphics Objects]]&lt;br /&gt;
* [[Python Integration]]&lt;br /&gt;
* [[Scenes]]&lt;br /&gt;
&lt;br /&gt;
* [[Installation]]&lt;br /&gt;
** [[Hardware Requirements]]&lt;br /&gt;
** [[Software Requirements]]&lt;br /&gt;
** [[OS Dependent]]&lt;br /&gt;
*** [[Linux]]&lt;br /&gt;
*** [[MAC]]&lt;br /&gt;
*** [[Windows]]&lt;br /&gt;
*** [[Script Library]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins/Modules]] &lt;br /&gt;
** [[APBS Plugin]]&lt;br /&gt;
** [[rtools Plugin]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins]] &lt;br /&gt;
** [[List of Plugins]]&lt;br /&gt;
** [[Tutorial on writing plugins]]&lt;br /&gt;
** [[Others]]&lt;br /&gt;
&lt;br /&gt;
* [[Structure Alignment]]&lt;br /&gt;
** [[Structure Alignment Editor]]&lt;br /&gt;
* [[3rd Party Applications]]&lt;br /&gt;
** [[Movies]]&lt;br /&gt;
** [[Codecs]]&lt;br /&gt;
&lt;br /&gt;
* [[Rendering molecules]]&lt;br /&gt;
** [[Basics of displaying molecules]]&lt;br /&gt;
** [[Coloring molecules]]&lt;br /&gt;
** [[Displaying biochemical properties]]&lt;br /&gt;
&lt;br /&gt;
* [[Modeling and editing structures. ]]&lt;br /&gt;
** [[Editing atoms]]&lt;br /&gt;
** [[Molecular sculpting]]&lt;br /&gt;
** [[Homology modeling]]&lt;br /&gt;
* [[How to do electrostatics and energy minimization.]]&lt;br /&gt;
* [[Launching PyMOL (has been asked often)]]&lt;br /&gt;
* [[Some kind of &amp;quot;script collection&amp;quot; would be very useful]]&lt;br /&gt;
* [[Creating publication-quality images HOWTO]]&lt;br /&gt;
&lt;br /&gt;
[[User:Tree|Tree]] 02:09, 16 Feb 2005 (CST)&lt;br /&gt;
&lt;br /&gt;
== [[Proposal for structure]] ==&lt;br /&gt;
Most of these points fall into some higher category. Here is a proposal how they could be arranged [[User:Kristian Rother|krother]]:&lt;br /&gt;
* I. Technical issues (installation, hardware)&lt;br /&gt;
* II. Basic usage (controls, rendering, selections)&lt;br /&gt;
* III. Advanced issues (Ray tracing, settings, movies)&lt;br /&gt;
* IV. Scripting &lt;br /&gt;
* V. Plugins&lt;br /&gt;
* VI. High-level applications (Crystallography, NMR)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Tree|Tree]] 02:09, 16 Feb 2005 (CST)&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4423</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4423"/>
		<updated>2005-02-17T07:58:54Z</updated>

		<summary type="html">&lt;p&gt;Krother: /* Initial Wiki Layout Suggestion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PyMol Wiki Home ==&lt;br /&gt;
You have reached the (new) home of the PyMolWiki, a user-driven web-oriented CMS.&lt;br /&gt;
&lt;br /&gt;
== Moving In ==&lt;br /&gt;
Please excuse the mess as we create the PyMolWiki site.  The wiki will be a valuable educational &amp;amp; reference tool for PyMol users.&lt;br /&gt;
&lt;br /&gt;
== Helping ==&lt;br /&gt;
If you feel like helping out, please login and get to work.  :-)  For design/layout purposes you must be logged in to edit pages.  We now need people to assist with&lt;br /&gt;
&lt;br /&gt;
* Wiki schema/design/organization: Below you'll find the current layout design&lt;br /&gt;
* Graphic design and CSS layout: We need logos, BG images and CSS layout&lt;br /&gt;
* Importing the email list content:  We have (lots) of email to sift through, extract data from and import into the Wiki&lt;br /&gt;
* Smoothing out the edges:  Editors are needed just to fix our typos!&lt;br /&gt;
* Etc...&lt;br /&gt;
&lt;br /&gt;
=== Editors Needed ===&lt;br /&gt;
If you feel you have the time to help import data into the PyMol wiki, please email [[User:Tree|Tree]].&lt;br /&gt;
&lt;br /&gt;
We need your help.  So join today &amp;amp; happy editing!&lt;br /&gt;
&lt;br /&gt;
[[User:Tree|Tree]]&lt;br /&gt;
&lt;br /&gt;
== [[Initial Wiki Layout Suggestion]] == (Warren Delano; [[User:Tree|Tree]]; Doug Kojetin; Michael George Werner; Kristian Rother; Nat Echols)&lt;br /&gt;
* [[Mouse Controls]]&lt;br /&gt;
* [[Command Language]]&lt;br /&gt;
* [[Atom Selections]]&lt;br /&gt;
* [[Ray-tracing]]&lt;br /&gt;
* [[Movies and Animations]]&lt;br /&gt;
* [[Cartoon Representations]]&lt;br /&gt;
* [[Settings Reference (all settings and what they do)]]&lt;br /&gt;
* [[Stereo 3D Display]]&lt;br /&gt;
** [[Hardware Options]]&lt;br /&gt;
** [[Linux XFree86 Configuration]]&lt;br /&gt;
* [[Crystallography Applications]]&lt;br /&gt;
** [[Symmetry]]&lt;br /&gt;
** [[Electron Density]]&lt;br /&gt;
* [[NMR Applications]]&lt;br /&gt;
** [[Working with a Family of Structures]]&lt;br /&gt;
** [[Superimposition and RMSD]]&lt;br /&gt;
** [[NMR Restraints Analysis]]&lt;br /&gt;
* [[Arbitrary Graphics Objects]]&lt;br /&gt;
* [[Python Integration]]&lt;br /&gt;
* [[Scenes]]&lt;br /&gt;
&lt;br /&gt;
* [[Installation]]&lt;br /&gt;
** [[Hardware Requirements]]&lt;br /&gt;
** [[Software Requirements]]&lt;br /&gt;
** [[OS Dependent]]&lt;br /&gt;
*** [[Linux]]&lt;br /&gt;
*** [[MAC]]&lt;br /&gt;
*** [[Windows]]&lt;br /&gt;
*** [[Script Library]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins/Modules]] &lt;br /&gt;
** [[APBS Plugin]]&lt;br /&gt;
** [[rtools Plugin]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins]] &lt;br /&gt;
** [[List of Plugins]]&lt;br /&gt;
** [[Tutorial on writing plugins]]&lt;br /&gt;
** [[Others]]&lt;br /&gt;
&lt;br /&gt;
* [[Structure Alignment]]&lt;br /&gt;
** [[Structure Alignment Editor]]&lt;br /&gt;
* [[3rd Party Applications]]&lt;br /&gt;
** [[Movies]]&lt;br /&gt;
** [[Codecs]]&lt;br /&gt;
&lt;br /&gt;
* [[Rendering molecules]]&lt;br /&gt;
** [[Basics of displaying molecules]]&lt;br /&gt;
** [[Coloring molecules]]&lt;br /&gt;
** [[Displaying biochemical properties]]&lt;br /&gt;
&lt;br /&gt;
* [[Modeling and editing structures. ]]&lt;br /&gt;
** [[Editing atoms]]&lt;br /&gt;
** [[Molecular sculpting]]&lt;br /&gt;
** [[Homology modeling]]&lt;br /&gt;
* [[How to do electrostatics and energy minimization.]]&lt;br /&gt;
* [[Launching PyMOL (has been asked often)]]&lt;br /&gt;
* [[Some kind of &amp;quot;script collection&amp;quot; would be very useful]]&lt;br /&gt;
* [[Creating publication-quality images HOWTO]]&lt;br /&gt;
&lt;br /&gt;
[[User:Tree|Tree]] 02:09, 16 Feb 2005 (CST)&lt;br /&gt;
&lt;br /&gt;
== [[Proposal for structure]] ==&lt;br /&gt;
Most of these points fall into some higher category. Here is a proposal how they could be arranged:&lt;br /&gt;
* I. Technical issues (installation, hardware)&lt;br /&gt;
* II. Basic usage (controls, rendering, selections)&lt;br /&gt;
* III. Advanced issues (Ray tracing, settings, movies)&lt;br /&gt;
* IV. Scripting &lt;br /&gt;
* V. Plugins&lt;br /&gt;
* VI. High-level applications (Crystallography, NMR)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Kristian Rother|krother]] 02:09, 16 Feb 2005 (CST)&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4422</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4422"/>
		<updated>2005-02-17T07:58:33Z</updated>

		<summary type="html">&lt;p&gt;Krother: /* Proposal for structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PyMol Wiki Home ==&lt;br /&gt;
You have reached the (new) home of the PyMolWiki, a user-driven web-oriented CMS.&lt;br /&gt;
&lt;br /&gt;
== Moving In ==&lt;br /&gt;
Please excuse the mess as we create the PyMolWiki site.  The wiki will be a valuable educational &amp;amp; reference tool for PyMol users.&lt;br /&gt;
&lt;br /&gt;
== Helping ==&lt;br /&gt;
If you feel like helping out, please login and get to work.  :-)  For design/layout purposes you must be logged in to edit pages.  We now need people to assist with&lt;br /&gt;
&lt;br /&gt;
* Wiki schema/design/organization: Below you'll find the current layout design&lt;br /&gt;
* Graphic design and CSS layout: We need logos, BG images and CSS layout&lt;br /&gt;
* Importing the email list content:  We have (lots) of email to sift through, extract data from and import into the Wiki&lt;br /&gt;
* Smoothing out the edges:  Editors are needed just to fix our typos!&lt;br /&gt;
* Etc...&lt;br /&gt;
&lt;br /&gt;
=== Editors Needed ===&lt;br /&gt;
If you feel you have the time to help import data into the PyMol wiki, please email [[User:Tree|Tree]].&lt;br /&gt;
&lt;br /&gt;
We need your help.  So join today &amp;amp; happy editing!&lt;br /&gt;
&lt;br /&gt;
[[User:Tree|Tree]]&lt;br /&gt;
&lt;br /&gt;
== [[Initial Wiki Layout Suggestion]] == (Warren Delano; [[User:Tree|Tree]]; Doug Kojetin; Michael George Werner; Kristian Rother; Nat Echols)&lt;br /&gt;
* [[Mouse Controls]]&lt;br /&gt;
* [[Command Language]]&lt;br /&gt;
* [[Atom Selections]]&lt;br /&gt;
* [[Ray-tracing]]&lt;br /&gt;
* [[Movies and Animations]]&lt;br /&gt;
* [[Cartoon Representations]]&lt;br /&gt;
* [[Settings Reference (all settings and what they do)]]&lt;br /&gt;
* [[Stereo 3D Display]]&lt;br /&gt;
** [[Hardware Options]]&lt;br /&gt;
** [[Linux XFree86 Configuration]]&lt;br /&gt;
* [[Crystallography Applications]]&lt;br /&gt;
** [[Symmetry]]&lt;br /&gt;
** [[Electron Density]]&lt;br /&gt;
* [[NMR Applications]]&lt;br /&gt;
** [[Working with a Family of Structures]]&lt;br /&gt;
** [[Superimposition and RMSD]]&lt;br /&gt;
** [[NMR Restraints Analysis]]&lt;br /&gt;
* [[Arbitrary Graphics Objects]]&lt;br /&gt;
* [[Python Integration]]&lt;br /&gt;
* [[Scenes]]&lt;br /&gt;
&lt;br /&gt;
* [[Installation]]&lt;br /&gt;
** [[Hardware Requirements]]&lt;br /&gt;
** [[Software Requirements]]&lt;br /&gt;
** [[OS Dependent]]&lt;br /&gt;
*** [[Linux]]&lt;br /&gt;
*** [[MAC]]&lt;br /&gt;
*** [[Windows]]&lt;br /&gt;
*** [[Script Library]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins/Modules]] &lt;br /&gt;
** [[APBS Plugin]]&lt;br /&gt;
** [[rtools Plugin]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins]] &lt;br /&gt;
** [[List of Plugins]]&lt;br /&gt;
** [[Tutorial on writing plugins]]&lt;br /&gt;
** [[Others]]&lt;br /&gt;
&lt;br /&gt;
* [[Structure Alignment]]&lt;br /&gt;
** [[Structure Alignment Editor]]&lt;br /&gt;
* [[3rd Party Applications]]&lt;br /&gt;
** [[Movies]]&lt;br /&gt;
** [[Codecs]]&lt;br /&gt;
&lt;br /&gt;
* [[Rendering molecules]]&lt;br /&gt;
** [[Basics of displaying molecules]]&lt;br /&gt;
** [[Coloring molecules]]&lt;br /&gt;
** [[Displaying biochemical properties]]&lt;br /&gt;
&lt;br /&gt;
* [[Modeling and editing structures. ]]&lt;br /&gt;
** [[Editing atoms]]&lt;br /&gt;
** [[Molecular sculpting]]&lt;br /&gt;
** [[Homology modeling]]&lt;br /&gt;
* [[How to do electrostatics and energy minimization.]]&lt;br /&gt;
* [[Launching PyMOL (has been asked often)]]&lt;br /&gt;
* [[Some kind of &amp;quot;script collection&amp;quot; would be very useful]]&lt;br /&gt;
* [[Creating publication-quality images HOWTO]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [[Proposal for structure]] ==&lt;br /&gt;
Most of these points fall into some higher category. Here is a proposal how they could be arranged:&lt;br /&gt;
* I. Technical issues (installation, hardware)&lt;br /&gt;
* II. Basic usage (controls, rendering, selections)&lt;br /&gt;
* III. Advanced issues (Ray tracing, settings, movies)&lt;br /&gt;
* IV. Scripting &lt;br /&gt;
* V. Plugins&lt;br /&gt;
* VI. High-level applications (Crystallography, NMR)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Kristian Rother|krother]] 02:09, 16 Feb 2005 (CST)&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4421</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4421"/>
		<updated>2005-02-17T07:57:34Z</updated>

		<summary type="html">&lt;p&gt;Krother: /* Initial Wiki Layout Suggestion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PyMol Wiki Home ==&lt;br /&gt;
You have reached the (new) home of the PyMolWiki, a user-driven web-oriented CMS.&lt;br /&gt;
&lt;br /&gt;
== Moving In ==&lt;br /&gt;
Please excuse the mess as we create the PyMolWiki site.  The wiki will be a valuable educational &amp;amp; reference tool for PyMol users.&lt;br /&gt;
&lt;br /&gt;
== Helping ==&lt;br /&gt;
If you feel like helping out, please login and get to work.  :-)  For design/layout purposes you must be logged in to edit pages.  We now need people to assist with&lt;br /&gt;
&lt;br /&gt;
* Wiki schema/design/organization: Below you'll find the current layout design&lt;br /&gt;
* Graphic design and CSS layout: We need logos, BG images and CSS layout&lt;br /&gt;
* Importing the email list content:  We have (lots) of email to sift through, extract data from and import into the Wiki&lt;br /&gt;
* Smoothing out the edges:  Editors are needed just to fix our typos!&lt;br /&gt;
* Etc...&lt;br /&gt;
&lt;br /&gt;
=== Editors Needed ===&lt;br /&gt;
If you feel you have the time to help import data into the PyMol wiki, please email [[User:Tree|Tree]].&lt;br /&gt;
&lt;br /&gt;
We need your help.  So join today &amp;amp; happy editing!&lt;br /&gt;
&lt;br /&gt;
[[User:Tree|Tree]]&lt;br /&gt;
&lt;br /&gt;
== [[Initial Wiki Layout Suggestion]] == (Warren Delano; [[User:Tree|Tree]]; Doug Kojetin; Michael George Werner; Kristian Rother; Nat Echols)&lt;br /&gt;
* [[Mouse Controls]]&lt;br /&gt;
* [[Command Language]]&lt;br /&gt;
* [[Atom Selections]]&lt;br /&gt;
* [[Ray-tracing]]&lt;br /&gt;
* [[Movies and Animations]]&lt;br /&gt;
* [[Cartoon Representations]]&lt;br /&gt;
* [[Settings Reference (all settings and what they do)]]&lt;br /&gt;
* [[Stereo 3D Display]]&lt;br /&gt;
** [[Hardware Options]]&lt;br /&gt;
** [[Linux XFree86 Configuration]]&lt;br /&gt;
* [[Crystallography Applications]]&lt;br /&gt;
** [[Symmetry]]&lt;br /&gt;
** [[Electron Density]]&lt;br /&gt;
* [[NMR Applications]]&lt;br /&gt;
** [[Working with a Family of Structures]]&lt;br /&gt;
** [[Superimposition and RMSD]]&lt;br /&gt;
** [[NMR Restraints Analysis]]&lt;br /&gt;
* [[Arbitrary Graphics Objects]]&lt;br /&gt;
* [[Python Integration]]&lt;br /&gt;
* [[Scenes]]&lt;br /&gt;
&lt;br /&gt;
* [[Installation]]&lt;br /&gt;
** [[Hardware Requirements]]&lt;br /&gt;
** [[Software Requirements]]&lt;br /&gt;
** [[OS Dependent]]&lt;br /&gt;
*** [[Linux]]&lt;br /&gt;
*** [[MAC]]&lt;br /&gt;
*** [[Windows]]&lt;br /&gt;
*** [[Script Library]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins/Modules]] &lt;br /&gt;
** [[APBS Plugin]]&lt;br /&gt;
** [[rtools Plugin]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins]] &lt;br /&gt;
** [[List of Plugins]]&lt;br /&gt;
** [[Tutorial on writing plugins]]&lt;br /&gt;
** [[Others]]&lt;br /&gt;
&lt;br /&gt;
* [[Structure Alignment]]&lt;br /&gt;
** [[Structure Alignment Editor]]&lt;br /&gt;
* [[3rd Party Applications]]&lt;br /&gt;
** [[Movies]]&lt;br /&gt;
** [[Codecs]]&lt;br /&gt;
&lt;br /&gt;
* [[Rendering molecules]]&lt;br /&gt;
** [[Basics of displaying molecules]]&lt;br /&gt;
** [[Coloring molecules]]&lt;br /&gt;
** [[Displaying biochemical properties]]&lt;br /&gt;
&lt;br /&gt;
* [[Modeling and editing structures. ]]&lt;br /&gt;
** [[Editing atoms]]&lt;br /&gt;
** [[Molecular sculpting]]&lt;br /&gt;
** [[Homology modeling]]&lt;br /&gt;
* [[How to do electrostatics and energy minimization.]]&lt;br /&gt;
* [[Launching PyMOL (has been asked often)]]&lt;br /&gt;
* [[Some kind of &amp;quot;script collection&amp;quot; would be very useful]]&lt;br /&gt;
* [[Creating publication-quality images HOWTO]]&lt;br /&gt;
&lt;br /&gt;
== [[Proposal for structure]] ==&lt;br /&gt;
Most of these points fall into some higher category. Here is a proposal how they could be arranged:&lt;br /&gt;
* I. Technical issues (installation, hardware)&lt;br /&gt;
* II. Basic usage (controls, rendering, selections)&lt;br /&gt;
* III. Advanced issues (Ray tracing, settings, movies)&lt;br /&gt;
* IV. Scripting &lt;br /&gt;
* V. Plugins&lt;br /&gt;
* VI. High-level applications (Crystallography, NMR)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Tree|Tree]] 02:09, 16 Feb 2005 (CST)&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4413</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4413"/>
		<updated>2005-02-17T07:49:33Z</updated>

		<summary type="html">&lt;p&gt;Krother: /* Initial Wiki Layout Suggestion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PyMol Wiki Home ==&lt;br /&gt;
You have reached the (new) home of the PyMolWiki, a user-driven web-oriented CMS.&lt;br /&gt;
&lt;br /&gt;
== Moving In ==&lt;br /&gt;
Please excuse the mess as we create the PyMolWiki site.  The wiki will be a valuable educational &amp;amp; reference tool for PyMol users.&lt;br /&gt;
&lt;br /&gt;
== Helping ==&lt;br /&gt;
If you feel like helping out, please login and get to work.  :-)  For design/layout purposes you must be logged in to edit pages.  We now need people to assist with&lt;br /&gt;
&lt;br /&gt;
* Wiki schema/design/organization: Below you'll find the current layout design&lt;br /&gt;
* Graphic design and CSS layout: We need logos, BG images and CSS layout&lt;br /&gt;
* Importing the email list content:  We have (lots) of email to sift through, extract data from and import into the Wiki&lt;br /&gt;
* Smoothing out the edges:  Editors are needed just to fix our typos!&lt;br /&gt;
* Etc...&lt;br /&gt;
&lt;br /&gt;
We need your help.  So join today &amp;amp; happy editing!&lt;br /&gt;
&lt;br /&gt;
[[User:Tree|Tree]]&lt;br /&gt;
&lt;br /&gt;
== [[Initial Wiki Layout Suggestion]] == (Warren Delano; [[User:Tree|Tree]]; Doug Kojetin; Michael George Werner; Kristian Rother; Nat Echols)&lt;br /&gt;
* [[Mouse Controls]]&lt;br /&gt;
* [[Command Language]]&lt;br /&gt;
* [[Atom Selections]]&lt;br /&gt;
* [[Ray-tracing]]&lt;br /&gt;
* [[Movies and Animations]]&lt;br /&gt;
* [[Cartoon Representations]]&lt;br /&gt;
* [[Settings Reference (all settings and what they do)]]&lt;br /&gt;
* [[Stereo 3D Display]]&lt;br /&gt;
** [[Hardware Options]]&lt;br /&gt;
** [[Linux XFree86 Configuration]]&lt;br /&gt;
* [[Crystallography Applications]]&lt;br /&gt;
** [[Symmetry]]&lt;br /&gt;
** [[Electron Density]]&lt;br /&gt;
* [[NMR Applications]]&lt;br /&gt;
** [[Working with a Family of Structures]]&lt;br /&gt;
** [[Superimposition and RMSD]]&lt;br /&gt;
** [[NMR Restraints Analysis]]&lt;br /&gt;
* [[Arbitrary Graphics Objects]]&lt;br /&gt;
* [[Python Integration]]&lt;br /&gt;
* [[Scenes]]&lt;br /&gt;
&lt;br /&gt;
* [[Installation]]&lt;br /&gt;
** [[Hardware Requirements]]&lt;br /&gt;
** [[Software Requirements]]&lt;br /&gt;
** [[OS Dependent]]&lt;br /&gt;
*** [[Linux]]&lt;br /&gt;
*** [[MAC]]&lt;br /&gt;
*** [[Windows]]&lt;br /&gt;
*** [[Script Library]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins/Modules]] &lt;br /&gt;
** [[APBS Plugin]]&lt;br /&gt;
** [[rtools Plugin]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins]] &lt;br /&gt;
** [[List of Plugins]]&lt;br /&gt;
** [[Tutorial on writing plugins]]&lt;br /&gt;
** [[Others]]&lt;br /&gt;
&lt;br /&gt;
* [[Structure Alignment]]&lt;br /&gt;
** [[Structure Alignment Editor]]&lt;br /&gt;
* [[3rd Party Applications]]&lt;br /&gt;
** [[Movies]]&lt;br /&gt;
** [[Codecs]]&lt;br /&gt;
&lt;br /&gt;
* [[Rendering molecules]]&lt;br /&gt;
** [[Basics of displaying molecules]]&lt;br /&gt;
** [[Coloring molecules]]&lt;br /&gt;
** [[Displaying biochemical properties]]&lt;br /&gt;
&lt;br /&gt;
* [[Modeling and editing structures. ]]&lt;br /&gt;
** [[Editing atoms]]&lt;br /&gt;
** [[Molecular sculpting]]&lt;br /&gt;
** [[Homology modeling]]&lt;br /&gt;
* [[How to do electrostatics and energy minimization.]]&lt;br /&gt;
* [[Launching PyMOL (has been asked often)]]&lt;br /&gt;
* [[Some kind of &amp;quot;script collection&amp;quot; would be very useful]]&lt;br /&gt;
* [[Creating publication-quality images HOWTO]]&lt;br /&gt;
----&lt;br /&gt;
[[User:Tree|Tree]] 02:09, 16 Feb 2005 (CST)&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4412</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Main_Page&amp;diff=4412"/>
		<updated>2005-02-17T07:40:24Z</updated>

		<summary type="html">&lt;p&gt;Krother: /* Initial Wiki Layout Suggestion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PyMol Wiki Home ==&lt;br /&gt;
You have reached the (new) home of the PyMolWiki, a user-driven web-oriented CMS.&lt;br /&gt;
&lt;br /&gt;
== Moving In ==&lt;br /&gt;
Please excuse the mess as we create the PyMolWiki site.  The wiki will be a valuable educational &amp;amp; reference tool for PyMol users.&lt;br /&gt;
&lt;br /&gt;
== Helping ==&lt;br /&gt;
If you feel like helping out, please login and get to work.  :-)  For design/layout purposes you must be logged in to edit pages.  We now need people to assist with&lt;br /&gt;
&lt;br /&gt;
* Wiki schema/design/organization: Below you'll find the current layout design&lt;br /&gt;
* Graphic design and CSS layout: We need logos, BG images and CSS layout&lt;br /&gt;
* Importing the email list content:  We have (lots) of email to sift through, extract data from and import into the Wiki&lt;br /&gt;
* Smoothing out the edges:  Editors are needed just to fix our typos!&lt;br /&gt;
* Etc...&lt;br /&gt;
&lt;br /&gt;
We need your help.  So join today &amp;amp; happy editing!&lt;br /&gt;
&lt;br /&gt;
[[User:Tree|Tree]]&lt;br /&gt;
&lt;br /&gt;
== [[Initial Wiki Layout Suggestion]] == (Warren Delano; [[User:Tree|Tree]]; Doug Kojetin; Michael George Werner; Kristian Rother; Nat Echols)&lt;br /&gt;
* [[Mouse Controls]]&lt;br /&gt;
* [[Command Language]]&lt;br /&gt;
* [[Atom Selections]]&lt;br /&gt;
* [[Ray-tracing]]&lt;br /&gt;
* [[Movies and Animations]]&lt;br /&gt;
* [[Cartoon Representations]]&lt;br /&gt;
* [[Settings Reference (all settings and what they do)]]&lt;br /&gt;
* [[Stereo 3D Display]]&lt;br /&gt;
** [[Hardware Options]]&lt;br /&gt;
** [[Linux XFree86 Configuration]]&lt;br /&gt;
* [[Crystallography Applications]]&lt;br /&gt;
** [[Symmetry]]&lt;br /&gt;
** [[Electron Density]]&lt;br /&gt;
* [[NMR Applications]]&lt;br /&gt;
** [[Working with a Family of Structures]]&lt;br /&gt;
** [[Superimposition and RMSD]]&lt;br /&gt;
** [[NMR Restraints Analysis]]&lt;br /&gt;
* [[Arbitrary Graphics Objects]]&lt;br /&gt;
* [[Python Integration]]&lt;br /&gt;
* [[Scenes]]&lt;br /&gt;
&lt;br /&gt;
* [[Installation]]&lt;br /&gt;
** [[Hardware Requirements]]&lt;br /&gt;
** [[Software Requirements]]&lt;br /&gt;
** [[OS Dependent]]&lt;br /&gt;
*** [[Linux]]&lt;br /&gt;
*** [[MAC]]&lt;br /&gt;
*** [[Windows]]&lt;br /&gt;
*** [[Script Library]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins/Modules]] &lt;br /&gt;
** [[APBS Plugin]]&lt;br /&gt;
** [[rtools Plugin]]&lt;br /&gt;
&lt;br /&gt;
* [[Plugins]] &lt;br /&gt;
** [[List of Plugins]]&lt;br /&gt;
** [[Tutorial on writing plugins]]&lt;br /&gt;
** [[Others]]&lt;br /&gt;
&lt;br /&gt;
* [[Structure Alignment]]&lt;br /&gt;
** [[Structure Alignment Editor]]&lt;br /&gt;
* [[3rd Party Applications]]&lt;br /&gt;
** [[Movies]]&lt;br /&gt;
** [[Codecs]]&lt;br /&gt;
&lt;br /&gt;
* [[Rendering molecules]]&lt;br /&gt;
** [[Basics of displaying molecules]]&lt;br /&gt;
** [[Coloring molecules]]&lt;br /&gt;
** [[Displaying biochemical properties]]&lt;br /&gt;
&lt;br /&gt;
* [[Modeling and editing structures. ]]&lt;br /&gt;
** [[Editing atoms]]&lt;br /&gt;
** [[Molecular sculpting]]&lt;br /&gt;
** [[Homology modeling]]&lt;br /&gt;
* [[How to do electrostatics and energy minimization.]]&lt;br /&gt;
* [[Launching PyMOL (has been asked often)]]&lt;br /&gt;
* [[Some kind of &amp;quot;script collection&amp;quot; would be very useful.]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Tree|Tree]] 02:09, 16 Feb 2005 (CST)&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Krother</name></author>
	</entry>
</feed>