<?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=Dan</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=Dan"/>
	<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php/Special:Contributions/Dan"/>
	<updated>2026-05-30T18:19:10Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=User:Dan&amp;diff=3020</id>
		<title>User:Dan</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=User:Dan&amp;diff=3020"/>
		<updated>2008-11-28T22:31:45Z</updated>

		<summary type="html">&lt;p&gt;Dan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi!&lt;br /&gt;
&lt;br /&gt;
I sometimes use [[PyMOL]], but to be honest I prefer [[Rasmol]].&lt;br /&gt;
&lt;br /&gt;
My website is [http://metadatabase.org MetaBase]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
* [[:Category:Commands]]&lt;br /&gt;
* [[:Category: Settings]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Template for documentation of commands / settings&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
===DESCRIPTION===&lt;br /&gt;
'''bold name''' description&lt;br /&gt;
&lt;br /&gt;
===USAGE===&lt;br /&gt;
 command line usage&lt;br /&gt;
&lt;br /&gt;
===PYMOL API===&lt;br /&gt;
 api usage&lt;br /&gt;
&lt;br /&gt;
===EXAMPLES===&lt;br /&gt;
 example usage&lt;br /&gt;
&lt;br /&gt;
===NOTES===&lt;br /&gt;
Other stuff&lt;br /&gt;
&lt;br /&gt;
===SEE ALSO===&lt;br /&gt;
Related stuff&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8530</id>
		<title>Rasmolify</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8530"/>
		<updated>2008-02-22T13:51:14Z</updated>

		<summary type="html">&lt;p&gt;Dan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here it is! Long awaited, less tested;&lt;br /&gt;
&lt;br /&gt;
== Install ==&lt;br /&gt;
; Linux : In your ~/.pymolrc set something like the following &amp;lt;PRE&amp;gt; run ~/pymolscripts/rasmolify.py &amp;lt;/PRE&amp;gt; Finally, make a directory called ~/pymolscripts and copy the code below into a file called rasmolify.py - That should do the trick. You may also like to add a line that reads &amp;lt;PRE&amp;gt;set virtual_trackball, off&amp;lt;/PRE&amp;gt; in your ~/.pymolrc&lt;br /&gt;
&lt;br /&gt;
; Windows : ???&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
Think 'rasmol'&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
* http://arcib.dowling.edu/sbevsl/&lt;br /&gt;
&lt;br /&gt;
== TODO ==&lt;br /&gt;
* Check if a 'selection' exists, and limit commands to that selection (map the concept of a rasmol 'selection' onto the concept of a pymol selection).&lt;br /&gt;
* Implement 'scaling' units for display functions&lt;br /&gt;
* Fix the mouse behaviour?&lt;br /&gt;
* Add a rasmol GUI!&lt;br /&gt;
&lt;br /&gt;
== Code ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
## This is just a quick hack. For something more meaty see;&lt;br /&gt;
## http://arcib.dowling.edu/sbevsl/&lt;br /&gt;
 &lt;br /&gt;
## Version 0.0.00-000/1&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
## Turn off the virtual_trackball&lt;br /&gt;
cmd.set(&amp;quot;virtual_trackball&amp;quot;, &amp;quot;off&amp;quot;)&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
## spacefill&lt;br /&gt;
def spacefill(p1=''):&lt;br /&gt;
    if(p1=='off'):&lt;br /&gt;
        cmd.hide(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
    elif(p1==''):&lt;br /&gt;
        cmd.show(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        print(&amp;quot;feh!&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;spacefill&amp;quot;, spacefill)&lt;br /&gt;
 &lt;br /&gt;
## cartoon&lt;br /&gt;
def cartoon(p1=''):&lt;br /&gt;
    if(p1=='off'):&lt;br /&gt;
        cmd.hide(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
    elif(p1==''):&lt;br /&gt;
        cmd.show(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        print(&amp;quot;feh!&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;cartoon&amp;quot;, cartoon)&lt;br /&gt;
 &lt;br /&gt;
## wireframe&lt;br /&gt;
def wireframe(p1=''):&lt;br /&gt;
    if(p1=='off'):&lt;br /&gt;
        cmd.hide(&amp;quot;lines&amp;quot;)&lt;br /&gt;
    elif(p1==''):&lt;br /&gt;
        cmd.show(&amp;quot;lines&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        print(&amp;quot;feh!&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;wireframe&amp;quot;, wireframe)&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
## exit&lt;br /&gt;
def exit():&lt;br /&gt;
    cmd.quit()&lt;br /&gt;
cmd.extend(&amp;quot;exit&amp;quot;, exit)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Script_Library]]&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8529</id>
		<title>Rasmolify</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8529"/>
		<updated>2008-02-22T13:49:37Z</updated>

		<summary type="html">&lt;p&gt;Dan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here it is! Long awaited, less tested;&lt;br /&gt;
&lt;br /&gt;
== Install ==&lt;br /&gt;
; Linux : In your ~/.pymolrc set something like the following &amp;lt;PRE&amp;gt; run ~/pymolscripts/rasmolify.py &amp;lt;/PRE&amp;gt; Finally, make a directory called ~/pymolscripts and copy the code below into a file called rasmolify.py - That should do the trick. You may also like to add a line that reads &amp;lt;PRE&amp;gt;set virtual_trackball, off&amp;lt;/PRE&amp;gt; in your ~/.pymolrc&lt;br /&gt;
&lt;br /&gt;
; Windows : ???&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
Think 'rasmol'&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
* http://arcib.dowling.edu/sbevsl/&lt;br /&gt;
&lt;br /&gt;
== TODO ==&lt;br /&gt;
* Implement 'scaling' units for display functions&lt;br /&gt;
* Fix the mouse behaviour?&lt;br /&gt;
* Add a rasmol GUI!&lt;br /&gt;
&lt;br /&gt;
== Code ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
## This is just a quick hack. For something more meaty see;&lt;br /&gt;
## http://arcib.dowling.edu/sbevsl/&lt;br /&gt;
 &lt;br /&gt;
## Version 0.0.00-000/1&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
## Turn off the virtual_trackball&lt;br /&gt;
cmd.set(&amp;quot;virtual_trackball&amp;quot;, &amp;quot;off&amp;quot;)&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
## spacefill&lt;br /&gt;
def spacefill(p1=''):&lt;br /&gt;
    if(p1=='off'):&lt;br /&gt;
        cmd.hide(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
    elif(p1==''):&lt;br /&gt;
        cmd.show(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        print(&amp;quot;feh!&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;spacefill&amp;quot;, spacefill)&lt;br /&gt;
 &lt;br /&gt;
## cartoon&lt;br /&gt;
def cartoon(p1=''):&lt;br /&gt;
    if(p1=='off'):&lt;br /&gt;
        cmd.hide(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
    elif(p1==''):&lt;br /&gt;
        cmd.show(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        print(&amp;quot;feh!&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;cartoon&amp;quot;, cartoon)&lt;br /&gt;
 &lt;br /&gt;
## wireframe&lt;br /&gt;
def wireframe(p1=''):&lt;br /&gt;
    if(p1=='off'):&lt;br /&gt;
        cmd.hide(&amp;quot;lines&amp;quot;)&lt;br /&gt;
    elif(p1==''):&lt;br /&gt;
        cmd.show(&amp;quot;lines&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        print(&amp;quot;feh!&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;wireframe&amp;quot;, wireframe)&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
## exit&lt;br /&gt;
def exit():&lt;br /&gt;
    cmd.quit()&lt;br /&gt;
cmd.extend(&amp;quot;exit&amp;quot;, exit)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Script_Library]]&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8528</id>
		<title>Rasmolify</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8528"/>
		<updated>2008-02-22T13:47:48Z</updated>

		<summary type="html">&lt;p&gt;Dan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here it is! Long awaited, less tested;&lt;br /&gt;
&lt;br /&gt;
== Install ==&lt;br /&gt;
; Linux : In your ~/.pymolrc set something like the following &amp;lt;PRE&amp;gt; run ~/pymolscripts/rasmolify.py &amp;lt;/PRE&amp;gt; Finally, make a directory called ~/pymolscripts and copy the code below into a file called rasmolify.py - That should do the trick. You may also like to add a line that reads &amp;lt;PRE&amp;gt;set virtual_trackball, off&amp;lt;/PRE&amp;gt; in your ~/.pymolrc&lt;br /&gt;
&lt;br /&gt;
; Windows : ???&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
Think 'rasmol'&lt;br /&gt;
&lt;br /&gt;
== Code ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
## This is just a quick hack. For something more meaty see;&lt;br /&gt;
## http://arcib.dowling.edu/sbevsl/&lt;br /&gt;
 &lt;br /&gt;
## Version 0.0.00-000/1&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
## Turn off the virtual_trackball&lt;br /&gt;
cmd.set(&amp;quot;virtual_trackball&amp;quot;, &amp;quot;off&amp;quot;)&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
## spacefill&lt;br /&gt;
def spacefill(p1=''):&lt;br /&gt;
    if(p1=='off'):&lt;br /&gt;
        cmd.hide(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
    elif(p1==''):&lt;br /&gt;
        cmd.show(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        print(&amp;quot;feh!&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;spacefill&amp;quot;, spacefill)&lt;br /&gt;
 &lt;br /&gt;
## cartoon&lt;br /&gt;
def cartoon(p1=''):&lt;br /&gt;
    if(p1=='off'):&lt;br /&gt;
        cmd.hide(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
    elif(p1==''):&lt;br /&gt;
        cmd.show(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        print(&amp;quot;feh!&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;cartoon&amp;quot;, cartoon)&lt;br /&gt;
 &lt;br /&gt;
## wireframe&lt;br /&gt;
def wireframe(p1=''):&lt;br /&gt;
    if(p1=='off'):&lt;br /&gt;
        cmd.hide(&amp;quot;lines&amp;quot;)&lt;br /&gt;
    elif(p1==''):&lt;br /&gt;
        cmd.show(&amp;quot;lines&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        print(&amp;quot;feh!&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;wireframe&amp;quot;, wireframe)&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
## exit&lt;br /&gt;
def exit():&lt;br /&gt;
    cmd.quit()&lt;br /&gt;
cmd.extend(&amp;quot;exit&amp;quot;, exit)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Script_Library]]&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Category:Settings&amp;diff=3788</id>
		<title>Category:Settings</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Category:Settings&amp;diff=3788"/>
		<updated>2008-02-22T13:25:38Z</updated>

		<summary type="html">&lt;p&gt;Dan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
PyMol has over 500 settings!  Everything from ray tracing fog, to perspective viewing, stereo rendering, colors, textures, memory settings and '''many''' more!&lt;br /&gt;
&lt;br /&gt;
One of the most powerful features is the amount of detail and control PyMOL offers through these various settings.&lt;br /&gt;
&lt;br /&gt;
For more information see [[Settings]].&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Settings&amp;diff=10142</id>
		<title>Settings</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Settings&amp;diff=10142"/>
		<updated>2008-02-22T13:25:11Z</updated>

		<summary type="html">&lt;p&gt;Dan: made a link a bit more explicit&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;These are all the PyMol settings.  If you feel like documenting them, and what they do, feel free.  43 done, 475 to go! See also [[:Category:Settings]]&lt;br /&gt;
&lt;br /&gt;
  active_selections              ray_default_renderer         &lt;br /&gt;
  [[all_states]]                     ray_direct_shade             &lt;br /&gt;
  [[ambient]]                        ray_hint_camera              &lt;br /&gt;
  angle_label_position           ray_hint_shadow              &lt;br /&gt;
  angle_size                     ray_improve_shadows          &lt;br /&gt;
  animation                      ray_interior_color           &lt;br /&gt;
  animation_duration             ray_interior_mode            &lt;br /&gt;
  [[antialias]]                      ray_interior_reflect         &lt;br /&gt;
  async_builds                   ray_interior_shadows         &lt;br /&gt;
  [[atom_name_wildcard]]             ray_interior_texture         &lt;br /&gt;
  auto_classify_atoms            ray_legacy_lighting          &lt;br /&gt;
  auto_color                     ray_max_passes               &lt;br /&gt;
  auto_dss                       [[ray_opaque_background]]       &lt;br /&gt;
  auto_hide_selections           [[ray_orthoscopic]]              &lt;br /&gt;
  auto_indicate_flags            ray_oversample_cutoff        &lt;br /&gt;
  auto_number_selections         ray_pixel_scale              &lt;br /&gt;
  auto_remove_hydrogens          [[ray_shadow]]                   &lt;br /&gt;
  auto_sculpt                    ray_shadow_decay_factor      &lt;br /&gt;
  auto_show_lines                ray_shadow_decay_range       &lt;br /&gt;
  auto_show_nonbonded            ray_shadow_fudge             &lt;br /&gt;
  auto_show_selections           [[ray_shadows]]                  &lt;br /&gt;
  auto_show_spheres              ray_texture                  &lt;br /&gt;
  [[auto_zoom]]                      ray_texture_settings         &lt;br /&gt;
  [[backface_cull]]                  ray_trace_depth_factor       &lt;br /&gt;
  batch_prefix                   ray_trace_disco_factor       &lt;br /&gt;
  [[bg_rgb]]                         [[ray_trace_fog]]                &lt;br /&gt;
  bonding_vdw_cutoff             ray_trace_fog_start          &lt;br /&gt;
  button_mode                    [[ray_trace_frames]]            &lt;br /&gt;
  button_mode_name               ray_trace_gain               &lt;br /&gt;
  cache_display                  [[Ray#Modes|ray_trace_mode]]&lt;br /&gt;
  cache_frames                   ray_trace_slope_factor       &lt;br /&gt;
  cache_memory                   ray_transparency_contrast    &lt;br /&gt;
  [[cartoon_color]]                  ray_transparency_shadows     &lt;br /&gt;
  [[Cartoon Helix Settings|cartoon_cylindrical_helices]]    ray_transparency_spec_cut    &lt;br /&gt;
  cartoon_debug                  ray_transparency_specular    &lt;br /&gt;
  [[cartoon_discrete_colors]]        ray_triangle_fudge           &lt;br /&gt;
  [[cartoon_dumbbell_length]]        [[reflect]]                      &lt;br /&gt;
  [[cartoon_dumbbell_radius]]        reflect_power                &lt;br /&gt;
  [[cartoon_dumbbell_width]]         retain_order                 &lt;br /&gt;
  [[Cartoon Helix Settings|cartoon_fancy_helices]]          [[ribbon_color]]                 &lt;br /&gt;
  [[cartoon_fancy_sheets]]           ribbon_nucleic_acid_mode     &lt;br /&gt;
  [[cartoon_flat_cycles]]            ribbon_power                 &lt;br /&gt;
  [[cartoon_flat_sheets]]            ribbon_power_b               &lt;br /&gt;
  [[Cartoon_helix_radius]]           ribbon_radius                &lt;br /&gt;
  [[cartoon_highlight_color]]        [[ribbon_sampling]]              &lt;br /&gt;
  cartoon_ladder_color           ribbon_side_chain_helper     &lt;br /&gt;
  cartoon_ladder_mode            [[ribbon_smooth]]                &lt;br /&gt;
  cartoon_ladder_radius          ribbon_throw                 &lt;br /&gt;
  cartoon_loop_cap               ribbon_trace_atoms           &lt;br /&gt;
  cartoon_loop_quality           [[ribbon_width]]                 &lt;br /&gt;
  cartoon_loop_radius            robust_logs                  &lt;br /&gt;
  [[cartoon_nucleic_acid_color]]     rock_delay                   &lt;br /&gt;
  [[cartoon_nucleic_acid_mode]]      roving_byres                 &lt;br /&gt;
  [[cartoon_oval_length]]            roving_cartoon               &lt;br /&gt;
  [[cartoon_oval_quality]]           roving_delay                 &lt;br /&gt;
  [[cartoon_oval_width]]             roving_detail                &lt;br /&gt;
  cartoon_power                  roving_isomesh               &lt;br /&gt;
  cartoon_power_b                roving_isosurface            &lt;br /&gt;
  cartoon_putty_quality          roving_labels                &lt;br /&gt;
  cartoon_putty_radius           roving_lines                 &lt;br /&gt;
  cartoon_putty_range            roving_map1_level            &lt;br /&gt;
  cartoon_putty_scale_max        roving_map1_name             &lt;br /&gt;
  cartoon_putty_scale_min        roving_map2_level            &lt;br /&gt;
  cartoon_putty_scale_power      roving_map2_name             &lt;br /&gt;
  [[cartoon_rect_length]]            roving_map3_level            &lt;br /&gt;
  [[cartoon_rect_width]]             roving_map3_name             &lt;br /&gt;
  cartoon_refine                 roving_nb_spheres            &lt;br /&gt;
  cartoon_refine_normals         roving_nonbonded             &lt;br /&gt;
  cartoon_refine_tips            roving_origin                &lt;br /&gt;
  cartoon_ring_color             roving_origin_z              &lt;br /&gt;
  cartoon_ring_finder            roving_origin_z_cushion      &lt;br /&gt;
  [[cartoon_ring_mode]]              roving_polar_contacts        &lt;br /&gt;
  cartoon_ring_radius            roving_polar_cutoff          &lt;br /&gt;
  [[cartoon_ring_transparency]]      roving_ribbon                &lt;br /&gt;
  cartoon_ring_width             roving_selection             &lt;br /&gt;
  [[cartoon_round_helices]]          roving_spheres               &lt;br /&gt;
  [[cartoon_sampling]]               roving_sticks                &lt;br /&gt;
  [[cartoon_side_chain_helper]]      scene_animation              &lt;br /&gt;
  cartoon_smooth_cycles          scene_animation_duration     &lt;br /&gt;
  cartoon_smooth_first           scene_current_name           &lt;br /&gt;
  cartoon_smooth_last            scene_loop                   &lt;br /&gt;
  [[cartoon_smooth_loops]]           scene_restart_movie_delay    &lt;br /&gt;
  cartoon_throw                  scenes_changed               &lt;br /&gt;
  cartoon_trace_atoms            sculpt_angl_weight           &lt;br /&gt;
  [[cartoon_transparency]]           sculpt_auto_center           &lt;br /&gt;
  cartoon_tube_cap               sculpt_avd_excl              &lt;br /&gt;
  cartoon_tube_quality           sculpt_avd_gap               &lt;br /&gt;
  cartoon_tube_radius            sculpt_avd_range             &lt;br /&gt;
  [[cavity_cull]]                    sculpt_avd_weight            &lt;br /&gt;
  cgo_dot_radius                 sculpt_bond_weight           &lt;br /&gt;
  cgo_dot_width                  sculpt_field_mask            &lt;br /&gt;
  cgo_line_radius                sculpt_hb_overlap            &lt;br /&gt;
  cgo_line_width                 sculpt_hb_overlap_base       &lt;br /&gt;
  cgo_ray_width_scale            sculpt_line_weight           &lt;br /&gt;
  cgo_sphere_quality             sculpt_max_max               &lt;br /&gt;
  cgo_transparency               sculpt_max_min               &lt;br /&gt;
  clamp_colors                   sculpt_max_scale             &lt;br /&gt;
  connect_bonded                 sculpt_max_weight            &lt;br /&gt;
  connect_cutoff                 sculpt_memory                &lt;br /&gt;
  connect_mode                   sculpt_min_max               &lt;br /&gt;
  coulomb_cutoff                 sculpt_min_min               &lt;br /&gt;
  coulomb_dielectric             sculpt_min_scale             &lt;br /&gt;
  coulomb_units_factor           sculpt_min_weight            &lt;br /&gt;
  cull_spheres                   sculpt_nb_interval           &lt;br /&gt;
  [[Dash_Gap]]                       sculpt_plan_weight           &lt;br /&gt;
  [[Dash_Length]]                    sculpt_pyra_weight           &lt;br /&gt;
  [[Dash_Radius]]                    sculpt_tors_tolerance        &lt;br /&gt;
  [[Dash_Round_Ends]]                sculpt_tors_weight           &lt;br /&gt;
  dash_width                     sculpt_tri_max               &lt;br /&gt;
  debug_pick                     sculpt_tri_min               &lt;br /&gt;
  defer_builds_mode              sculpt_tri_mode              &lt;br /&gt;
  defer_updates                  sculpt_tri_scale             &lt;br /&gt;
  [[depth_cue]]                      sculpt_tri_weight            &lt;br /&gt;
  dihedral_label_position        sculpt_vdw_scale             &lt;br /&gt;
  dihedral_size                  sculpt_vdw_scale14           &lt;br /&gt;
  direct                         sculpt_vdw_vis_max           &lt;br /&gt;
  dist_counter                   sculpt_vdw_vis_mid           &lt;br /&gt;
  distance_exclusion             sculpt_vdw_vis_min           &lt;br /&gt;
  dot_color                      sculpt_vdw_vis_mode          &lt;br /&gt;
  dot_density                    sculpt_vdw_weight            &lt;br /&gt;
  dot_hydrogens                  sculpt_vdw_weight14          &lt;br /&gt;
  dot_lighting                   sculpting                    &lt;br /&gt;
  dot_mode                       sculpting_cycles             &lt;br /&gt;
  dot_normals                    secondary_structure          &lt;br /&gt;
  [[dot_radius]]                     security                     &lt;br /&gt;
  dot_solvent                    sel_counter&lt;br /&gt;
  [[dot_width]]                      selection_overlay            &lt;br /&gt;
  draw_frames                    selection_round_points       &lt;br /&gt;
  editor_auto_dihedral           selection_visible_only       &lt;br /&gt;
  editor_auto_origin             [[selection_width]]              &lt;br /&gt;
  editor_label_fragments         selection_width_max          &lt;br /&gt;
  fast_idle                      selection_width_scale        &lt;br /&gt;
  fetch_path                     [[seq_view]]                     &lt;br /&gt;
  [[Field_Of_View]]                  seq_view_alignment           &lt;br /&gt;
  fit_iterations                 seq_view_color               &lt;br /&gt;
  fit_tolerance                  seq_view_discrete_by_state   &lt;br /&gt;
  float_labels                   seq_view_fill_char           &lt;br /&gt;
  [[fog]]                            seq_view_fill_color          &lt;br /&gt;
  [[fog_start]]                      seq_view_format              &lt;br /&gt;
  frame                          seq_view_label_color         &lt;br /&gt;
  full_screen                    seq_view_label_mode          &lt;br /&gt;
  gamma                          seq_view_label_spacing       &lt;br /&gt;
  gaussian_b_adjust              seq_view_label_start         &lt;br /&gt;
  gaussian_b_floor               [[seq_view_location]]            &lt;br /&gt;
  gaussian_resolution            seq_view_overlay             &lt;br /&gt;
  gl_ambient                     seq_view_unaligned_color     &lt;br /&gt;
  h_bond_cone                    seq_view_unaligned_mode      &lt;br /&gt;
  h_bond_cutoff_center           session_file                 &lt;br /&gt;
  h_bond_cutoff_edge             session_migration            &lt;br /&gt;
  h_bond_exclusion               session_version_check        &lt;br /&gt;
  h_bond_max_angle               [[shininess]]&lt;br /&gt;
  h_bond_power_a                 show_alpha_checker           &lt;br /&gt;
  h_bond_power_b                 show_progress                &lt;br /&gt;
  [[half_bonds]]                     simplify_display_lists       &lt;br /&gt;
  hash_max                       single_image                 &lt;br /&gt;
  hide_underscore_names          slice_dynamic_grid           &lt;br /&gt;
  idle_delay                     slice_dynamic_grid_resolution&lt;br /&gt;
  ignore_case                    slice_grid                   &lt;br /&gt;
  ignore_pdb_segi                slice_height_map             &lt;br /&gt;
  image_dots_per_inch            slice_height_scale           &lt;br /&gt;
  internal_feedback              slice_track_camera           &lt;br /&gt;
  [[Internal Gui|internal_gui]]                   slow_idle                    &lt;br /&gt;
  internal_gui_control_size      smooth_color_triangle        &lt;br /&gt;
  internal_gui_mode              solvent_radius               &lt;br /&gt;
  internal_gui_width             spec_count                   &lt;br /&gt;
  [[internal_prompt]]                spec_direct                  &lt;br /&gt;
  isomesh_auto_state             spec_direct_power            &lt;br /&gt;
  [[label_color]]                    spec_power                   &lt;br /&gt;
  [[Label_font_id]]                  [[spec_reflect]]                 &lt;br /&gt;
  [[Label_outline_color]]            specular                     &lt;br /&gt;
  [[label_position]]                 specular_intensity           &lt;br /&gt;
  [[label_shadow_mode]]              [[sphere_color]]                 &lt;br /&gt;
  [[label_size]]                     [[sphere_mode]]                 &lt;br /&gt;
  legacy_mouse_zoom              sphere_point_max_size        &lt;br /&gt;
  legacy_vdw_radii               sphere_point_size            &lt;br /&gt;
  light                          [[sphere_quality]]               &lt;br /&gt;
  light2                         [[sphere_scale]]                 &lt;br /&gt;
  light3                         sphere_solvent               &lt;br /&gt;
  light4                         [[sphere_transparency]]          &lt;br /&gt;
  light5                         spheroid_fill                &lt;br /&gt;
  light6                         spheroid_scale               &lt;br /&gt;
  light7                         spheroid_smooth              &lt;br /&gt;
  light8                         ss_helix_phi_exclude         &lt;br /&gt;
  light9                         ss_helix_phi_include         &lt;br /&gt;
  [[light_count]]                    ss_helix_phi_target          &lt;br /&gt;
  line_radius                    ss_helix_psi_exclude         &lt;br /&gt;
  [[line_smooth]]                   ss_helix_psi_include         &lt;br /&gt;
  line_stick_helper              ss_helix_psi_target          &lt;br /&gt;
  line_width                     ss_strand_phi_exclude        &lt;br /&gt;
  log_box_selections             ss_strand_phi_include        &lt;br /&gt;
  log_conformations              ss_strand_phi_target         &lt;br /&gt;
  logging                        ss_strand_psi_exclude        &lt;br /&gt;
  matrix_mode                    ss_strand_psi_include        &lt;br /&gt;
  max_threads                    ss_strand_psi_target         &lt;br /&gt;
  max_triangles                  state                        &lt;br /&gt;
  [[mesh_color]]                     static_singletons            &lt;br /&gt;
  [[mesh_lighting]]                  [[stereo]]&lt;br /&gt;
  [[mesh_mode]]                      [[stereo_angle]]&lt;br /&gt;
  mesh_normals                   stereo_double_pump_mono      &lt;br /&gt;
  [[mesh_quality]]                   [[stereo_mode]]                 &lt;br /&gt;
  mesh_radius                    stereo_shift                 &lt;br /&gt;
  mesh_solvent                   [[stick_ball]]                   &lt;br /&gt;
  [[mesh_type]]                      [[stick_ball_ratio]]             &lt;br /&gt;
  [[mesh_width]]                     [[stick_color]]&lt;br /&gt;
  [[min_mesh_spacing]]               stick_fixed_radius           &lt;br /&gt;
  mouse_limit                    [[stick_nub]]                    &lt;br /&gt;
  mouse_restart_movie_delay      stick_overlap                &lt;br /&gt;
  mouse_scale                    stick_quality                &lt;br /&gt;
  mouse_selection_mode           stick_radius                 &lt;br /&gt;
  movie_delay                    [[stick_transparency]]           &lt;br /&gt;
  movie_loop                     stick_valence_scale          &lt;br /&gt;
  multiplex                      stop_on_exceptions           &lt;br /&gt;
  no_idle                        surface_best                 &lt;br /&gt;
  nonbonded_size                 surface_carve_cutoff         &lt;br /&gt;
  normal_workaround              surface_carve_selection      &lt;br /&gt;
  normalize_ccp4_maps            surface_carve_state          &lt;br /&gt;
  normalize_grd_maps             surface_circumscribe         &lt;br /&gt;
  normalize_o_maps               surface_clear_cutoff         &lt;br /&gt;
  nvidia_bugs                    surface_clear_selection      &lt;br /&gt;
  opaque_background              surface_clear_state          &lt;br /&gt;
  [[orthoscopic]]                    surface_color                &lt;br /&gt;
  overlay                        surface_debug                &lt;br /&gt;
  overlay_lines                  surface_miserable            &lt;br /&gt;
  pdb_conect_all                 surface_mode                 &lt;br /&gt;
  pdb_discrete_chains            surface_normal               &lt;br /&gt;
  pdb_echo_tags                  surface_optimize_subsets     &lt;br /&gt;
  pdb_hetatm_sort                surface_poor                 &lt;br /&gt;
  pdb_honor_model_number         surface_proximity            &lt;br /&gt;
  pdb_insertions_go_first        surface_quality              &lt;br /&gt;
  pdb_insure_orthogonal          surface_ramp_above_mode      &lt;br /&gt;
  pdb_literal_names              surface_solvent              &lt;br /&gt;
  pdb_no_end_record              surface_trim_cutoff          &lt;br /&gt;
  pdb_reformat_names_mode        surface_trim_factor          &lt;br /&gt;
  pdb_retain_ids                 surface_type                 &lt;br /&gt;
  pdb_standard_order             suspend_updates              &lt;br /&gt;
  pdb_truncate_residue_name      swap_dsn6_bytes              &lt;br /&gt;
  pdb_unbond_cations             sweep_angle                  &lt;br /&gt;
  pdb_use_ter_records            sweep_mode                   &lt;br /&gt;
  [[pickable]]                       sweep_phase                  &lt;br /&gt;
  png_file_gamma                 sweep_speed                  &lt;br /&gt;
  png_screen_gamma               test1                        &lt;br /&gt;
  power                          test2                        &lt;br /&gt;
  pqr_no_chain_id                text                         &lt;br /&gt;
  presentation                   texture_fonts                &lt;br /&gt;
  presentation_auto_quit         [[transparency]]                 &lt;br /&gt;
  presentation_auto_start        transparency_mode            &lt;br /&gt;
  presentation_mode              transparency_picking_mode    &lt;br /&gt;
  preserve_chempy_ids            triangle_max_passes          &lt;br /&gt;
  pymol_space_max_blue           trim_dots                    &lt;br /&gt;
  pymol_space_max_green          [[two_sided_lighting]]&lt;br /&gt;
  pymol_space_max_red            use_display_lists            &lt;br /&gt;
  pymol_space_min_factor         [[valence]]                      &lt;br /&gt;
  raise_exceptions               valence_default              &lt;br /&gt;
  rank_assisted_sorts            valence_size                 &lt;br /&gt;
  ray_blend_blue                 validate_object_names        &lt;br /&gt;
  ray_blend_colors               [[virtual_trackball]]            &lt;br /&gt;
  ray_blend_green                wildcard                     &lt;br /&gt;
  ray_blend_red                  wizard_prompt_mode           &lt;br /&gt;
  ray_color_ramps                wrap_output                  &lt;br /&gt;
&lt;br /&gt;
[[Category:Settings|All Settings]]&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Virtual_trackball&amp;diff=10617</id>
		<title>Virtual trackball</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Virtual_trackball&amp;diff=10617"/>
		<updated>2008-02-22T13:23:36Z</updated>

		<summary type="html">&lt;p&gt;Dan: Is this better or worse?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===DESCRIPTION===&lt;br /&gt;
The '''virtual_trackbal''' setting allows you to toggle on or off the virtual trackball feature.&lt;br /&gt;
&lt;br /&gt;
===USAGE===&lt;br /&gt;
 set virtual_trackball, &amp;lt;state&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===PYMOL API===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
 cmd.set(&amp;quot;virtual_trackball&amp;quot;, &amp;lt;state&amp;gt;)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===EXAMPLES===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
set virtual_trackball, off&lt;br /&gt;
set virtual_trackball, 0                                        #off&lt;br /&gt;
&lt;br /&gt;
set virtual_trackball, on&lt;br /&gt;
set virtual_trackball, 1                                        #on&lt;br /&gt;
&amp;lt;/source&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===NOTES===&lt;br /&gt;
The virtual trackball is a less precise, more 'intuitive' way of manipulating a 3-dimensional scene.&lt;br /&gt;
&lt;br /&gt;
===SEE ALSO===&lt;br /&gt;
[[Set]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Settings|Virtual trackball]]&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Virtual_trackball&amp;diff=10616</id>
		<title>Virtual trackball</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Virtual_trackball&amp;diff=10616"/>
		<updated>2008-02-22T13:22:05Z</updated>

		<summary type="html">&lt;p&gt;Dan: Is this better or worse?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===DESCRIPTION===&lt;br /&gt;
The '''virtual_trackbal''' setting allows you to toggle on or off the virtual trackball feature.&lt;br /&gt;
&lt;br /&gt;
===USAGE===&lt;br /&gt;
 set virtual_trackball, &amp;lt;state&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===PYMOL API===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
 cmd.set(&amp;quot;virtual_trackball&amp;quot;, &amp;lt;state&amp;gt;)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===EXAMPLES===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
set virtual_trackball, off&lt;br /&gt;
set virtual_trackball, 0                                        #off&lt;br /&gt;
&lt;br /&gt;
set virtual_trackball, on&lt;br /&gt;
set virtual_trackball, 1                                        #on&lt;br /&gt;
&amp;lt;/source&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===NOTES===&lt;br /&gt;
Other stuff&lt;br /&gt;
&lt;br /&gt;
===SEE ALSO===&lt;br /&gt;
Related stuff&lt;br /&gt;
&lt;br /&gt;
[[Category:Settings|Virtual trackball]]&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=User:Dan&amp;diff=3019</id>
		<title>User:Dan</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=User:Dan&amp;diff=3019"/>
		<updated>2008-02-22T13:19:00Z</updated>

		<summary type="html">&lt;p&gt;Dan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi!&lt;br /&gt;
&lt;br /&gt;
I sometimes use [[PyMOL]], but to be honest I prefer [[Rasmol]].&lt;br /&gt;
&lt;br /&gt;
My website is [http://biodatabase.org MetaBase]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
* [[:Category:Commands]]&lt;br /&gt;
* [[:Category: Settings]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Template for documentation of commands / settings&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
===DESCRIPTION===&lt;br /&gt;
'''bold name''' description&lt;br /&gt;
&lt;br /&gt;
===USAGE===&lt;br /&gt;
 command line usage&lt;br /&gt;
&lt;br /&gt;
===PYMOL API===&lt;br /&gt;
 api usage&lt;br /&gt;
&lt;br /&gt;
===EXAMPLES===&lt;br /&gt;
 example usage&lt;br /&gt;
&lt;br /&gt;
===NOTES===&lt;br /&gt;
Other stuff&lt;br /&gt;
&lt;br /&gt;
===SEE ALSO===&lt;br /&gt;
Related stuff&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=User:Dan&amp;diff=3018</id>
		<title>User:Dan</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=User:Dan&amp;diff=3018"/>
		<updated>2008-02-22T13:18:14Z</updated>

		<summary type="html">&lt;p&gt;Dan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi!&lt;br /&gt;
&lt;br /&gt;
I sometimes use [[PyMOL]], but to be honest I prefer [[Rasmol]].&lt;br /&gt;
&lt;br /&gt;
My website is [http://biodatabase.org MetaBase]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
* [[:Category:Commands]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===DESCRIPTION===&lt;br /&gt;
'''bold name''' description&lt;br /&gt;
&lt;br /&gt;
===USAGE===&lt;br /&gt;
 command line usage&lt;br /&gt;
&lt;br /&gt;
===PYMOL API===&lt;br /&gt;
 api usage&lt;br /&gt;
&lt;br /&gt;
===EXAMPLES===&lt;br /&gt;
 example usage&lt;br /&gt;
&lt;br /&gt;
===NOTES===&lt;br /&gt;
Other stuff&lt;br /&gt;
&lt;br /&gt;
===SEE ALSO===&lt;br /&gt;
Related stuff&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=User:Dan&amp;diff=3017</id>
		<title>User:Dan</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=User:Dan&amp;diff=3017"/>
		<updated>2008-02-22T13:16:28Z</updated>

		<summary type="html">&lt;p&gt;Dan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi!&lt;br /&gt;
&lt;br /&gt;
I sometimes use [[PyMOL]], but to be honest I prefer [[Rasmol]].&lt;br /&gt;
&lt;br /&gt;
My website is [http://biodatabase.org MetaBase]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===DESCRIPTION===&lt;br /&gt;
'''bold name''' description&lt;br /&gt;
&lt;br /&gt;
===USAGE===&lt;br /&gt;
 command line usage&lt;br /&gt;
&lt;br /&gt;
===PYMOL API===&lt;br /&gt;
 api usage&lt;br /&gt;
&lt;br /&gt;
===EXAMPLES===&lt;br /&gt;
 example usage&lt;br /&gt;
&lt;br /&gt;
===NOTES===&lt;br /&gt;
Other stuff&lt;br /&gt;
&lt;br /&gt;
===SEE ALSO===&lt;br /&gt;
Related stuff&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Talk:Example_Scripts&amp;diff=319</id>
		<title>Talk:Example Scripts</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Talk:Example_Scripts&amp;diff=319"/>
		<updated>2008-02-21T12:52:45Z</updated>

		<summary type="html">&lt;p&gt;Dan: New page: Where do I go for more help writing scripts? --~~~~&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Where do I go for more help writing scripts? --[[User:Dan|Dan]] 06:52, 21 February 2008 (CST)&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8527</id>
		<title>Rasmolify</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8527"/>
		<updated>2008-02-21T12:50:32Z</updated>

		<summary type="html">&lt;p&gt;Dan: categorized&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here it is! Long awaited, less tested;&lt;br /&gt;
&lt;br /&gt;
== Install ==&lt;br /&gt;
; Linux : In your ~/.pymolrc set something like the following &amp;lt;PRE&amp;gt; run ~/pymolscripts/rasmolify.py &amp;lt;/PRE&amp;gt; Finally, make a directory called ~/pymolscripts and copy the code below into a file called rasmolify.py - That should do the trick. You may also like to add a line that reads &amp;lt;PRE&amp;gt;set virtual_trackball, off&amp;lt;/PRE&amp;gt; in your ~/.pymolrc&lt;br /&gt;
&lt;br /&gt;
; Windows : ???&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
Think 'rasmol'&lt;br /&gt;
&lt;br /&gt;
== Code ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
## This is just a quick hack. For something more meaty see;&lt;br /&gt;
## http://arcib.dowling.edu/sbevsl/&lt;br /&gt;
&lt;br /&gt;
## Version 0.0.00-000/0&lt;br /&gt;
&lt;br /&gt;
## TODO: &lt;br /&gt;
&lt;br /&gt;
## Check if a 'current' selection exists, and perform the action on&lt;br /&gt;
## that selection. Make 'off' proper. Add units to the commands that&lt;br /&gt;
## take them. Turn off the virtual_trackball. Fix the mouse behaviour.&lt;br /&gt;
&lt;br /&gt;
## spacefill&lt;br /&gt;
def spacefill(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;spacefill&amp;quot;, spacefill)&lt;br /&gt;
&lt;br /&gt;
## cartoon&lt;br /&gt;
def cartoon(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;cartoon&amp;quot;, cartoon)&lt;br /&gt;
&lt;br /&gt;
## wireframe&lt;br /&gt;
def wireframe(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;lines&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;lines&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;wireframe&amp;quot;, wireframe)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
## exit&lt;br /&gt;
def exit():&lt;br /&gt;
    cmd.quit()&lt;br /&gt;
cmd.extend(&amp;quot;exit&amp;quot;, exit)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Script_Library]]&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Rasmol&amp;diff=9910</id>
		<title>Rasmol</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Rasmol&amp;diff=9910"/>
		<updated>2008-02-21T12:11:26Z</updated>

		<summary type="html">&lt;p&gt;Dan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The program '''rasmol''' is another molecular graphics visualization tool.&lt;br /&gt;
&lt;br /&gt;
For using 'rasmol-like' syntax within PyMOL, you can try [[Rasmolify]].&lt;br /&gt;
&lt;br /&gt;
== See also == &lt;br /&gt;
* [[PyMOL]]&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Talk:Rasmolify&amp;diff=121</id>
		<title>Talk:Rasmolify</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Talk:Rasmolify&amp;diff=121"/>
		<updated>2008-02-20T13:44:47Z</updated>

		<summary type="html">&lt;p&gt;Dan: New page: Thanks to scripts found here; http://www.ebi.ac.uk/~gareth/pymol/ --~~~~&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Thanks to scripts found here; http://www.ebi.ac.uk/~gareth/pymol/ --[[User:Dan|Dan]] 07:44, 20 February 2008 (CST)&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8526</id>
		<title>Rasmolify</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8526"/>
		<updated>2008-02-20T13:43:02Z</updated>

		<summary type="html">&lt;p&gt;Dan: /* Install */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here it is! Long awaited, less tested;&lt;br /&gt;
&lt;br /&gt;
== Install ==&lt;br /&gt;
; Linux : In your ~/.pymolrc set something like the following &amp;lt;PRE&amp;gt; run ~/pymolscripts/rasmolify.py &amp;lt;/PRE&amp;gt; Finally, make a directory called ~/pymolscripts and copy the code below into a file called rasmolify.py - That should do the trick. You may also like to add a line that reads &amp;lt;PRE&amp;gt;set virtual_trackball, off&amp;lt;/PRE&amp;gt; in your ~/.pymolrc&lt;br /&gt;
&lt;br /&gt;
; Windows : ???&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
Think 'rasmol'&lt;br /&gt;
&lt;br /&gt;
== Code ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
## This is just a quick hack. For something more meaty see;&lt;br /&gt;
## http://arcib.dowling.edu/sbevsl/&lt;br /&gt;
&lt;br /&gt;
## Version 0.0.00-000/0&lt;br /&gt;
&lt;br /&gt;
## TODO: &lt;br /&gt;
&lt;br /&gt;
## Check if a 'current' selection exists, and perform the action on&lt;br /&gt;
## that selection. Make 'off' proper. Add units to the commands that&lt;br /&gt;
## take them. Turn off the virtual_trackball. Fix the mouse behaviour.&lt;br /&gt;
&lt;br /&gt;
## spacefill&lt;br /&gt;
def spacefill(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;spacefill&amp;quot;, spacefill)&lt;br /&gt;
&lt;br /&gt;
## cartoon&lt;br /&gt;
def cartoon(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;cartoon&amp;quot;, cartoon)&lt;br /&gt;
&lt;br /&gt;
## wireframe&lt;br /&gt;
def wireframe(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;lines&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;lines&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;wireframe&amp;quot;, wireframe)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
## exit&lt;br /&gt;
def exit():&lt;br /&gt;
    cmd.quit()&lt;br /&gt;
cmd.extend(&amp;quot;exit&amp;quot;, exit)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8525</id>
		<title>Rasmolify</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8525"/>
		<updated>2008-02-20T13:42:11Z</updated>

		<summary type="html">&lt;p&gt;Dan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here it is! Long awaited, less tested;&lt;br /&gt;
&lt;br /&gt;
== Install ==&lt;br /&gt;
; Linux : In your ~/.pymolrc set something like the following &amp;lt;PRE&amp;gt; run ~/pymolscripts/rasmolify.py &amp;lt;/PRE&amp;gt; Finally, make a directory called ~/pymolscripts and copy the code below into a file called rasmolify.py - That should do the trick. You may also like to add a line that reads &amp;lt;PRE&amp;gt;set virtual_trackball, off&amp;lt;/PRE&amp;gt; in your ~/.pymolrc&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
Think 'rasmol'&lt;br /&gt;
&lt;br /&gt;
== Code ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
## This is just a quick hack. For something more meaty see;&lt;br /&gt;
## http://arcib.dowling.edu/sbevsl/&lt;br /&gt;
&lt;br /&gt;
## Version 0.0.00-000/0&lt;br /&gt;
&lt;br /&gt;
## TODO: &lt;br /&gt;
&lt;br /&gt;
## Check if a 'current' selection exists, and perform the action on&lt;br /&gt;
## that selection. Make 'off' proper. Add units to the commands that&lt;br /&gt;
## take them. Turn off the virtual_trackball. Fix the mouse behaviour.&lt;br /&gt;
&lt;br /&gt;
## spacefill&lt;br /&gt;
def spacefill(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;spacefill&amp;quot;, spacefill)&lt;br /&gt;
&lt;br /&gt;
## cartoon&lt;br /&gt;
def cartoon(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;cartoon&amp;quot;, cartoon)&lt;br /&gt;
&lt;br /&gt;
## wireframe&lt;br /&gt;
def wireframe(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;lines&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;lines&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;wireframe&amp;quot;, wireframe)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
## exit&lt;br /&gt;
def exit():&lt;br /&gt;
    cmd.quit()&lt;br /&gt;
cmd.extend(&amp;quot;exit&amp;quot;, exit)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8524</id>
		<title>Rasmolify</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8524"/>
		<updated>2008-02-20T13:34:53Z</updated>

		<summary type="html">&lt;p&gt;Dan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here it is! Long awaited, less tested;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
## This is just a quick hack. For something more meaty see;&lt;br /&gt;
## http://arcib.dowling.edu/sbevsl/&lt;br /&gt;
&lt;br /&gt;
## Version 0.0.00-000/0&lt;br /&gt;
&lt;br /&gt;
## TODO: &lt;br /&gt;
&lt;br /&gt;
## Check if a 'current' selection exists, and perform the action on&lt;br /&gt;
## that selection. Make 'off' proper. Add units to the commands that&lt;br /&gt;
## take them. Turn off the virtual_trackball. Fix the mouse behaviour.&lt;br /&gt;
&lt;br /&gt;
## spacefill&lt;br /&gt;
def spacefill(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;spacefill&amp;quot;, spacefill)&lt;br /&gt;
&lt;br /&gt;
## cartoon&lt;br /&gt;
def cartoon(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;cartoon&amp;quot;, cartoon)&lt;br /&gt;
&lt;br /&gt;
## wireframe&lt;br /&gt;
def wireframe(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;lines&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;lines&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;wireframe&amp;quot;, wireframe)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
## exit&lt;br /&gt;
def exit():&lt;br /&gt;
    cmd.quit()&lt;br /&gt;
cmd.extend(&amp;quot;exit&amp;quot;, exit)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Talk:Virtual_trackball&amp;diff=282</id>
		<title>Talk:Virtual trackball</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Talk:Virtual_trackball&amp;diff=282"/>
		<updated>2008-02-20T13:28:54Z</updated>

		<summary type="html">&lt;p&gt;Dan: New page: How do I do this through the API? --~~~~&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;How do I do this through the API? --[[User:Dan|Dan]] 07:28, 20 February 2008 (CST)&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8523</id>
		<title>Rasmolify</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Rasmolify&amp;diff=8523"/>
		<updated>2008-02-20T13:24:27Z</updated>

		<summary type="html">&lt;p&gt;Dan: rasmolify your life&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Here it is! Long awaited, less tested;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
## This is just a quick hack. For something more meaty see;&lt;br /&gt;
## http://arcib.dowling.edu/sbevsl/&lt;br /&gt;
&lt;br /&gt;
## Version 0.0.00-000/0&lt;br /&gt;
&lt;br /&gt;
## TODO: &lt;br /&gt;
&lt;br /&gt;
## Check if a 'current' selection exists, and perform the action on&lt;br /&gt;
## that selection. Make 'off' proper. Add units to the commands that&lt;br /&gt;
## take them.&lt;br /&gt;
&lt;br /&gt;
## spacefill&lt;br /&gt;
def spacefill(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;spheres&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;spacefill&amp;quot;, spacefill)&lt;br /&gt;
&lt;br /&gt;
## cartoon&lt;br /&gt;
def cartoon(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;cartoon&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;cartoon&amp;quot;, cartoon)&lt;br /&gt;
&lt;br /&gt;
## wireframe&lt;br /&gt;
def wireframe(toggle=1):&lt;br /&gt;
    if(toggle==1):&lt;br /&gt;
        cmd.show(&amp;quot;lines&amp;quot;)&lt;br /&gt;
    else:&lt;br /&gt;
        cmd.hide(&amp;quot;lines&amp;quot;)&lt;br /&gt;
cmd.extend(&amp;quot;wireframe&amp;quot;, wireframe)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
## exit&lt;br /&gt;
def exit():&lt;br /&gt;
    cmd.quit()&lt;br /&gt;
cmd.extend(&amp;quot;exit&amp;quot;, exit)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Category_talk:Script_Library&amp;diff=4122</id>
		<title>Category talk:Script Library</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Category_talk:Script_Library&amp;diff=4122"/>
		<updated>2008-02-19T08:45:11Z</updated>

		<summary type="html">&lt;p&gt;Dan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Cant you make this using a DPL? --[[User:Dan|Dan]] 10:39, 18 February 2008 (CST)&lt;br /&gt;
&lt;br /&gt;
About the rasmolify script, there's a project to translate between the languages [http://arcib.dowling.edu/sbevsl/].&lt;br /&gt;
It's in pre-alpha, apparently, but this kind of language translation seems like a tricky problem. It's on my list of things to do...--[[User:Gilleain|Gilleain]] 19:27, 18 February 2008 (CST)&lt;br /&gt;
&lt;br /&gt;
: To be honest I was thinking of a quick hack rather than anything fancy. Thanks very much for the pointer though! --[[User:Dan|Dan]] 02:45, 19 February 2008 (CST)&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Category:Script_Library&amp;diff=3892</id>
		<title>Category:Script Library</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Category:Script_Library&amp;diff=3892"/>
		<updated>2008-02-18T16:55:57Z</updated>

		<summary type="html">&lt;p&gt;Dan: /* Descriptions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
Here we provide a trove of scripts.  The descriptions immediately follow.  For the entire category, please see the bottom of this page.&lt;br /&gt;
&lt;br /&gt;
= Descriptions =&lt;br /&gt;
&lt;br /&gt;
* [[Rasmolify]] -- A work in progress - a script to map Rasmol commands onto the equivalent PyMOL commands.&lt;br /&gt;
&lt;br /&gt;
* [[Zero_residues]] -- Renumber residues such that the first residue is 0.  Useful for alignments.&lt;br /&gt;
&lt;br /&gt;
* [[Cealign]] -- Implementation of the CE Structure Alignment algorithm as a PyMOL plugin.&lt;br /&gt;
&lt;br /&gt;
* [[WriteSS]] -- Writes secondary structural elements, for each residues, to a file.&lt;br /&gt;
&lt;br /&gt;
* [[Process_All_Files_In_Directory]] -- Do something to all files in a directory.  The examples show how to print the disulfide bond lengths, then in general all sulfur distances (not necessarily bound).&lt;br /&gt;
&lt;br /&gt;
* [[Kabsch]] -- Kabsch alignment of two sets of vectors.  (Part 2 of a protein alignment.)&lt;br /&gt;
&lt;br /&gt;
* [[Transform_odb]] -- Transform a selection of an existing object and output as a new object.  The transformation matrix is read from an &amp;quot;O&amp;quot;-style tranformation matrix file (.odb) written by &amp;quot;O&amp;quot; or by any of the Uppsala Software Factory programs (from Gerard Klegweit) such as LSQMAN.&lt;br /&gt;
&lt;br /&gt;
* [[Stereo_Ray]] -- This script will create two resolution specific ray traced images rotated appropriately for inclusion into a single file to represent a stereo view of the desired macromolecule.&lt;br /&gt;
&lt;br /&gt;
* [[Translate_And_Measure]] -- prints '''overlap''' if any of the atoms in molA or molB were within 4 Angstrom after translating by 1 along X&lt;br /&gt;
&lt;br /&gt;
* [[Show aromatics]] -- This script will display a backbone &amp;quot;worm&amp;quot; for your protein, with all of the sidechains for aromatic residues displayed as green &amp;quot;sticks&amp;quot;.  Usage: Save this as &amp;quot;show_aromatics.pml&amp;quot;, load your protein in PyMOL, and run the script (select &amp;quot;Run&amp;quot; from the &amp;quot;File&amp;quot; menu). (PyMOL script; TStout)&lt;br /&gt;
&lt;br /&gt;
* [[Show hydrophobics]] -- This script will display a backbone &amp;quot;worm&amp;quot; for your protein, with all of the sidechains for hydrophobic residues displayed as orange &amp;quot;sticks&amp;quot;.  Usage: Same as &amp;quot;show aromatics&amp;quot;. (PyMOL script; TStout)&lt;br /&gt;
&lt;br /&gt;
* [[Show charged]] -- This script will display a backbone &amp;quot;worm&amp;quot; for your protein, with all of the sidechains for charged residues displayed as red (negative) or blue (posititve) &amp;quot;sticks&amp;quot;.  Usage: Same as &amp;quot;show aromatics&amp;quot;. (PyMOL script; TStout)&lt;br /&gt;
&lt;br /&gt;
* [[Show hydrophilic]] -- This script will display a backbone &amp;quot;worm&amp;quot; for your protein, with all of the sidechains for hydrophilic residues displayed as green &amp;quot;sticks&amp;quot;.  Usage: Same as &amp;quot;show aromatics&amp;quot;. (PyMOL script; TStout)&lt;br /&gt;
&lt;br /&gt;
* [[Show NMR constrains]] -- This script will display the NMR constrains used for a structure calculation atop a structure.  Usage: Save this as &amp;quot;NMRcnstr.py&amp;quot; load your protein in PyMOL, and run the script. type upl('fname') or cns('fname') where fname is the filename with the NMR constrains you want to display. &lt;br /&gt;
&lt;br /&gt;
* [[Perp Maker]] -- Creates a perpendicular plane through the center of your protein with respect to the camera's current position.  (If you translate the protein towards the camera a bit, you get a nice surface, sometimes.) A stupid little script I wrote in response to a request a few months ago (and it doesn't even conform to the request!)  Load a protein, run the script (read the documentation in the script). (Jason Vertrees/[[User:Tree|Tree]])&lt;br /&gt;
&lt;br /&gt;
* [[PythonTerminal]] -- Allows execution of python commands from the PyMOL command line.&lt;br /&gt;
&lt;br /&gt;
* [[Axes]] -- Creates a 3D-CGO object that shows the three coordinate axes.&lt;br /&gt;
&lt;br /&gt;
* [[Symmetry Axis]] -- Draw a 3D-CGO line given a point and a direction. &lt;br /&gt;
&lt;br /&gt;
* [[CGO Text]] -- Creates a 3D-CGO text object.&lt;br /&gt;
&lt;br /&gt;
* [[List Selection]] -- Prints a list of all residues in a selection (both Python and .pml).&lt;br /&gt;
&lt;br /&gt;
* [[List Colors]] -- Lists the color of all residues in a selection (both Python and .pml).&lt;br /&gt;
&lt;br /&gt;
* [[List Secondary Structures]] -- Secondary structures (both predefined and those calculated with the 'dss' command) can be exported as a long string ('HHHHLLLLSSS').&lt;br /&gt;
&lt;br /&gt;
* [[Split Movement]] -- Moves two parts of one object into different directions.&lt;br /&gt;
&lt;br /&gt;
* [[Selection Exists]] -- Python method that returns true if a selection of a given name exists.&lt;br /&gt;
&lt;br /&gt;
* [[Get Coordinates I]] -- Retrieves atom coordinates as Python objects.&lt;br /&gt;
&lt;br /&gt;
* [[Get Coordinates II]] -- Retrieves atom coordinates as Python array (list object).&lt;br /&gt;
&lt;br /&gt;
* [[grepset]] -- List all settings matching a given keyword. - ''by EHP''&lt;br /&gt;
&lt;br /&gt;
* [[apropos]] -- List all commands matching a given keyword or whose docs contain the keyword. - ''by EHP''&lt;br /&gt;
&lt;br /&gt;
* [[mouse_modes]] -- customize the default mouse bindings for Viewing or Editing modes. - ''by EHP''&lt;br /&gt;
&lt;br /&gt;
* [[Measure Distance]] -- Measures the distance between two atoms (Python script).&lt;br /&gt;
&lt;br /&gt;
* [[Read PDB-String]] -- Parses a string in PDB format to a PyMOL object.&lt;br /&gt;
&lt;br /&gt;
* [[Color Objects]] -- Colors all objects differently (Python script).&lt;br /&gt;
&lt;br /&gt;
* [[Key Wait]] -- Process key events in a Python script.&lt;br /&gt;
&lt;br /&gt;
* [[Bounding Box]] -- Create a bounding box around a selection (Python script; requires numarray and Scientific; gilleain)&lt;br /&gt;
&lt;br /&gt;
* [[Ellipsoid]] -- Create callback object (opengl) ellipsoids. (Python script;  gilleain)&lt;br /&gt;
&lt;br /&gt;
* [[pdbsurvey]] -- Surveys the pdb for recently added structures that are relevant to a user-specified keywords list (in a text file)&lt;br /&gt;
&lt;br /&gt;
* [[resicolor]] -- Colors proteins according to residue type.&lt;br /&gt;
&lt;br /&gt;
* [[TransformSelectionByCameraView]] -- Transforms the selection by the camera view.&lt;br /&gt;
&lt;br /&gt;
* [[WFMesh]] -- Imports wavefront object mesh files; Starwars as an example!&lt;br /&gt;
&lt;br /&gt;
* [[grepsel]] -- Make named selections using regular expressions (protein sequence).&lt;br /&gt;
&lt;br /&gt;
* [[PowerMate Dial OS X]] -- Script and instructions to use the PowerMate dial on Mac OS X.&lt;br /&gt;
&lt;br /&gt;
* [[Plane Wizard]] -- Wizard to draw planes between three picked points.&lt;br /&gt;
&lt;br /&gt;
* [[Slerpy]] -- Pymol command extensions for key frame animation movie making.&lt;br /&gt;
&lt;br /&gt;
* [[Helicity_check]] -- helicity_check show the evolution of O - N distances over an amino acid sequence&lt;br /&gt;
&lt;br /&gt;
* [[Center Of Mass]] -- Given a selection of atoms (of equal weight) - Calculates the center of mass and represents it with a CGO sphere&lt;br /&gt;
&lt;br /&gt;
* [[ss]] -- Simple command to summarise the Secondary Structure as a list of &amp;quot;start-end type&amp;quot; like sses.&lt;br /&gt;
&lt;br /&gt;
* [[iterate_sses]] -- Slightly more complex version of &amp;quot;ss&amp;quot; that allows the user to pass in a function to act on the sse list.&lt;br /&gt;
&lt;br /&gt;
* [[motif]] -- Designed for easy display of backbone motifs (nests, catgrips, etc).&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripting|Script Library]]&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Talk:Read_PDB-String&amp;diff=10674</id>
		<title>Talk:Read PDB-String</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Talk:Read_PDB-String&amp;diff=10674"/>
		<updated>2008-02-18T16:42:32Z</updated>

		<summary type="html">&lt;p&gt;Dan: New page: More details here would be nice! --~~~~&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;More details here would be nice! --[[User:Dan|Dan]] 10:42, 18 February 2008 (CST)&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=User:Dan&amp;diff=3016</id>
		<title>User:Dan</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=User:Dan&amp;diff=3016"/>
		<updated>2008-02-18T16:41:07Z</updated>

		<summary type="html">&lt;p&gt;Dan: Sorry for the spam ;-)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi!&lt;br /&gt;
&lt;br /&gt;
I sometimes use [[PyMOL]], but to be honest I prefer [[Rasmol]].&lt;br /&gt;
&lt;br /&gt;
My website is [http://biodatabase.org MetaBase]&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Category_talk:Script_Library&amp;diff=4120</id>
		<title>Category talk:Script Library</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Category_talk:Script_Library&amp;diff=4120"/>
		<updated>2008-02-18T16:39:38Z</updated>

		<summary type="html">&lt;p&gt;Dan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Cant you make this using a DPL? --[[User:Dan|Dan]] 10:39, 18 February 2008 (CST)&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=PyMOL&amp;diff=9869</id>
		<title>PyMOL</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=PyMOL&amp;diff=9869"/>
		<updated>2008-02-18T16:38:44Z</updated>

		<summary type="html">&lt;p&gt;Dan: seems logical&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Main Page]]&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Rasmol&amp;diff=9909</id>
		<title>Rasmol</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Rasmol&amp;diff=9909"/>
		<updated>2008-02-18T16:38:27Z</updated>

		<summary type="html">&lt;p&gt;Dan: looking for a 'rasmolify' script&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The program '''rasmol''' is another molecular graphics visualization tool.&lt;br /&gt;
&lt;br /&gt;
== See also == &lt;br /&gt;
* [[PyMOL]]&lt;/div&gt;</summary>
		<author><name>Dan</name></author>
	</entry>
</feed>