<?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=Esguerra</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=Esguerra"/>
	<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php/Special:Contributions/Esguerra"/>
	<updated>2026-05-30T17:07:46Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=12752</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=12752"/>
		<updated>2015-05-08T12:57:27Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
3DNA[http://x3dna.org/] provides a ruby script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA  [http://x3dna.org/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
== Invoking ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]Dr. Robert Campbell's website.&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
set ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:X3dna_r3d_pymol.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== More ==&lt;br /&gt;
&lt;br /&gt;
For more examples of figures obtained using 3DNA and pymol follow the next link:&lt;br /&gt;
[[http://mesguerra.org/render/render.htm]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Nucleic_Acids]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=12751</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=12751"/>
		<updated>2015-05-08T11:01:02Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
3DNA[http://x3dna.org/] provides a ruby script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.2  [http://x3dna.org/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
== Invoking ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]Dr. Robert Campbell's website.&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
set ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:X3dna_r3d_pymol.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== More ==&lt;br /&gt;
&lt;br /&gt;
For more examples of figures obtained using 3DNA and pymol follow the next link:&lt;br /&gt;
[[http://mesguerra.org/render/render.htm]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Nucleic_Acids]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=12750</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=12750"/>
		<updated>2015-05-08T07:05:15Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* More */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] or  3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
== Invoking ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]Dr. Robert Campbell's website.&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
set ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:X3dna_r3d_pymol.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== More ==&lt;br /&gt;
&lt;br /&gt;
For more examples of figures obtained using 3DNA and pymol follow the next link:&lt;br /&gt;
[[http://mesguerra.org/render/render.htm]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Nucleic_Acids]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Label&amp;diff=7818</id>
		<title>Label</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Label&amp;diff=7818"/>
		<updated>2014-02-18T11:07:26Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Pl.png|right|500px]]&lt;br /&gt;
&lt;br /&gt;
The [[Label]] command controls how PyMOL draws text labels for PyMOL objects.&lt;br /&gt;
&lt;br /&gt;
= Details =&lt;br /&gt;
Labeling is important so there are many options for your fine tuning needs.  You can change the [[Label_size|label size]], [[Label_color|label color]], positioning, [[Label_font_id|font]], the [[Label_outline_color|label outline color]] that masks the font and much, much more.&lt;br /&gt;
&lt;br /&gt;
You can have PyMOL label atoms by properties or arbitrary strings as you want; you can even use Unicode fonts for special symbols like, &amp;lt;math&amp;gt;\alpha, \beta, \pm, \textrm{\AA}&amp;lt;/math&amp;gt;, etc.&lt;br /&gt;
&lt;br /&gt;
The following gallery shows some examples of how extensible the [[Label]] command is.  &lt;br /&gt;
&amp;lt;gallery heights=&amp;quot;180px&amp;quot; widths=&amp;quot;200px&amp;quot; align=&amp;quot;center&amp;quot; perrow=&amp;quot;3&amp;quot;&amp;gt;&lt;br /&gt;
Image:Label_pre.png|Simple label&lt;br /&gt;
Image:New_fonts.jpeg|Example showing usage of Unicode fonts for special characters, see [[label_font_id]].&lt;br /&gt;
Image:Font_ex.png|Another example with Unicode fonts&lt;br /&gt;
Image:Label_ex.png|Example label&lt;br /&gt;
Image:Ls0.png|Label shadows turned off&lt;br /&gt;
Image:Ls2.png|Label shadows turned on&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Built-in Object Properties==&lt;br /&gt;
Aside from arbitrary string labels, like &amp;quot;This is the catalytic residue&amp;quot; for an atom/residue you can also use the following built-in molecular properties:&lt;br /&gt;
* '''name''', the atom name&lt;br /&gt;
* '''resn''', the residue name&lt;br /&gt;
*'''resi''', the residue number/identifier&lt;br /&gt;
*'''chain''', the chain name&lt;br /&gt;
*'''q''', charge&lt;br /&gt;
*'''b''', the occupancy/b-factor&lt;br /&gt;
*'''segi''', the segment identifier&lt;br /&gt;
*'''type''' ''(ATOM,HETATM)'', the type of atom&lt;br /&gt;
*'''formal_charge''', the formal charge&lt;br /&gt;
*'''partial_charge''', the partial charge&lt;br /&gt;
*'''numeric_type''', the numeric type&lt;br /&gt;
*'''text_type''', the text type&lt;br /&gt;
&lt;br /&gt;
You can use one of these properties as:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
# simple example: label residue 22's atoms with their names&lt;br /&gt;
label i. 22, name&lt;br /&gt;
&lt;br /&gt;
# Label residue #44's alpha carbon with it's residue name, residue number and B-factor.&lt;br /&gt;
label n. CA and i. 44, &amp;quot;(%s, %s, %s)&amp;quot; % (resn, resi, b)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See the syntax and examples below for more info.&lt;br /&gt;
&lt;br /&gt;
=Syntax=&lt;br /&gt;
To use the label command follow this syntax:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
# labeling syntax&lt;br /&gt;
label [ selection[, expression]]&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
where '''selection''' is some object/selection you want to label and '''expression''' is some string (or set of strings) which PyMOL is to use to label the given selection.&lt;br /&gt;
&lt;br /&gt;
We have plenty of examples.  See [[#Examples|the examples]] below.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
Here are all the label settings and their general effect.  For each label setting, see the respective web page for more details.&lt;br /&gt;
&lt;br /&gt;
'''[[label_angle_digits]]'''&lt;br /&gt;
:: sets the number of decimals in angle label.&lt;br /&gt;
'''[[label_distance_digits]]'''&lt;br /&gt;
:: sets the number of decimals in distance label.&lt;br /&gt;
'''[[label_shadow_mode]]'''&lt;br /&gt;
:: sets whether or not PyMOL will ray trace shadows for your label text.  Eg: &amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;set label_shadow_mode, 2&amp;lt;/source&amp;gt;&lt;br /&gt;
'''[[label_color]]'''&lt;br /&gt;
:: sets the color of the label text.  Note that you can have labels of different colors for different objects or selections. Some examples:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
# per-object:&lt;br /&gt;
set label_color, color-name, object-name  #eg, set label-color, magenta, /protein&lt;br /&gt;
&lt;br /&gt;
# per-atom:&lt;br /&gt;
set label_color, color-name, selection    #eg, set label-color, marine, /protein/A/A/23/CA&lt;br /&gt;
&lt;br /&gt;
# another example&lt;br /&gt;
fragment arg&lt;br /&gt;
label all, name&lt;br /&gt;
set label_color, yellow, arg&lt;br /&gt;
set label_color, red, elem c&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''[[label_font_id]]'''&lt;br /&gt;
:: sets the font to render your label.  There are 12 different fonts from 5&amp;amp;mdash;16.  Numbers 15 and 16 are special for unicode.  Eg: &amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;set label_font_id, 12&amp;lt;/source&amp;gt;. See the [[label_font_id]] page for explicit examples on how to use unicode characters in PyMOL labels.&lt;br /&gt;
'''[[label_size]]'''&lt;br /&gt;
:: sets the size of the text.  You can use positive numbers 2, 3, 4, etc for point sizes, or negative numbers for Angstrom-based sizes. Default is 14 points. Labels in Angstrom-size scale with the distance from the front plane, labels in point-size don't.  Eg: &amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;set label_size, -2  #results in a size of 2 Angstroms&amp;lt;/source&amp;gt;&lt;br /&gt;
'''[[label_digits]]'''&lt;br /&gt;
:: sets the number of decimals in label. It affects all digits only if label_distance_digits or label_dihedral_digits or label_angle_digits are set to -1.&lt;br /&gt;
'''[[label_outline_color]]'''&lt;br /&gt;
:: each label is outlined (so you can do white-on-white labels, for example).  This options sets the color of the label outline.  Eg. &amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;set label_outline_color, orange&amp;lt;/source&amp;gt;&lt;br /&gt;
'''[[label_dihedral_digits]]'''&lt;br /&gt;
:: sets the number of decimals in dihedral label.&lt;br /&gt;
'''[[label_position]]'''&lt;br /&gt;
:: sets any offset from the original X,Y,Z coordinates for the label.  If you like to use the mouse, you can enter [[edit_mode]] and '''ctrl-left_click''' to drag labels around; '''ctrl-shift-left_click''' will let you move the labels in the z-direction. '''&amp;quot;Save labels&amp;quot;-workaround''' If you want to save the position of your labels, the best way might be to create a new object and move the atoms in this object. Since the labels are positioned from the atom positions this is an indirect way of moving the labels and being able to save them.&lt;br /&gt;
&lt;br /&gt;
=Examples=&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
#1.&lt;br /&gt;
# make a very simple label on the 14th alpha carbon.&lt;br /&gt;
label n. CA and i. 14, &amp;quot;This is carbon 14.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
#2.&lt;br /&gt;
# make a fake scene label; use this to label entire scenes, not just atoms/bonds.&lt;br /&gt;
pseudoatom foo&lt;br /&gt;
label foo, &amp;quot;Once upon a time...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
#3.&lt;br /&gt;
# make a huge label&lt;br /&gt;
set label_size, -5&lt;br /&gt;
pseudoatom foo&lt;br /&gt;
label foo, &amp;quot;This is large text&amp;quot;&lt;br /&gt;
&lt;br /&gt;
#4. Partial Charge&lt;br /&gt;
label (chain A),chain&lt;br /&gt;
label (n;ca),&amp;quot;%s-%s&amp;quot; % (resn,resi)&lt;br /&gt;
label (resi 200),&amp;quot;%1.3f&amp;quot; % partial_charge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#5. The gallery image above Label_ex.png was created with this code&lt;br /&gt;
#   and finally, some labels were moved around in '''edit_mode'''.&lt;br /&gt;
label (resi 200),&amp;quot;%1.3f&amp;quot; % b&lt;br /&gt;
set label_font_id, 10&lt;br /&gt;
set label_size, 10&lt;br /&gt;
&lt;br /&gt;
#6. This example shows how to label a selection with the &lt;br /&gt;
#   XYZ coordinates of the atoms &lt;br /&gt;
from pymol import stored&lt;br /&gt;
stored.pos = []&lt;br /&gt;
# select the carbon atoms in my hetero atoms to label&lt;br /&gt;
select nn, het and e. C&lt;br /&gt;
# get the XYZ coordinates and put htem into stored.pos&lt;br /&gt;
iterate_state 1, (nn), stored.pos.append((x,y,z))&lt;br /&gt;
# label all N atoms.  You need the pop() function or else&lt;br /&gt;
# PyMOL will complain b/c you didn't provide enough coords.&lt;br /&gt;
label nn, (&amp;quot;%5.5s, %5.5s, %5.5s&amp;quot;) %  stored.pos.pop()&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= User Comments =&lt;br /&gt;
==Labels Using ID Numbers==&lt;br /&gt;
The following commnent,&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
label SELECTION, &amp;quot; %s&amp;quot; % ID &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
labels the SELECTION with atom ID numbers.&lt;br /&gt;
&lt;br /&gt;
You can make more complicated selections/lables such as&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
label SELECTION, &amp;quot; %s:%s %s&amp;quot; % (resi, resn, name)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
which will give you something like &amp;quot;GLU:139 CG&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Labels Using One Letter Abbreviations==&lt;br /&gt;
* First, Add this to your $HOME/.pymolrc  file:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
# start $HOME/.pymolrc modification&lt;br /&gt;
one_letter ={'VAL':'V', 'ILE':'I', 'LEU':'L', 'GLU':'E', 'GLN':'Q', \&lt;br /&gt;
'ASP':'D', 'ASN':'N', 'HIS':'H', 'TRP':'W', 'PHE':'F', 'TYR':'Y',    \&lt;br /&gt;
'ARG':'R', 'LYS':'K', 'SER':'S', 'THR':'T', 'MET':'M', 'ALA':'A',    \&lt;br /&gt;
'GLY':'G', 'PRO':'P', 'CYS':'C'}&lt;br /&gt;
# end modification&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Second, instead of:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
label n. ca, resn&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
use:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
label n. ca, one_letter[resn]&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or: ( to get something like D85)&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
label n. ca, &amp;quot;%s%s&amp;quot; %(one_letter[resn],resi)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Labels and defer_builds_mode==&lt;br /&gt;
If You have a weak video card, You might want to set&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
set defer_builds_mode, 5&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
It helps a lot but breaks labels rendering. You can use&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
set defer_builds_mode, 4&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
instead.&lt;br /&gt;
&lt;br /&gt;
=See Also=&lt;br /&gt;
[[:Category:Labeling]]&lt;br /&gt;
&lt;br /&gt;
All the settings posted above.&lt;br /&gt;
&lt;br /&gt;
[[Category:Labeling|Label]]&lt;br /&gt;
[[Category:Commands|Label]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Load_Traj&amp;diff=6814</id>
		<title>Load Traj</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Load_Traj&amp;diff=6814"/>
		<updated>2012-06-26T16:02:43Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* NOTES */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''load_traj''' reads trajectory files (currently just AMBER files).  The file extension is used to determine the format.  AMBER files must end in &amp;quot;.trj&amp;quot; &lt;br /&gt;
&lt;br /&gt;
In newer builds of PyMOL (namely, version 1.0 or newer), several additional formats are accepted.  CHARMM trajectories (&amp;quot;.dcd&amp;quot;) are also valid files and only require a structure to be loaded first while the trajectory file gets loaded as sequential states into the associated object.  However, it should be noted that, unless the [[defer_builds_mode]] is set (to 3), loading a large trajectory may take up a lot of RAM.&lt;br /&gt;
&lt;br /&gt;
===USAGE===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load_traj filename [,object [,state [,format [,interval [,average ]&lt;br /&gt;
                   [,start [,stop [,max [,selection [,image [,shift &lt;br /&gt;
                   ]]]]]]]]]&lt;br /&gt;
&amp;lt;/source&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.load_traj(filename,object='',state=0,format='',interval=1,&lt;br /&gt;
           average=1,start=1,stop=-1,max=-1,selection='all',image=1,&lt;br /&gt;
           shift=&amp;quot;[0.0,0.0,0.0]&amp;quot;)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===NOTES===&lt;br /&gt;
*You must first load a corresponding topology file before attempting to load a trajectory file.&lt;br /&gt;
*PyMOL does not know how to wrap the truncated octahedron used by Amber You will need to use the [http://amber.scripps.edu/tutorials/basic/tutorial5/index.html ptraj] program first to do this.&lt;br /&gt;
*The average option is not a running average.  To perform this type of average, use the [[smooth]] command after loading the trajectory file.&lt;br /&gt;
*For quickly viewing Trajectories as a movie, use the [[mset]] command to map each state to a movie frame.&lt;br /&gt;
&lt;br /&gt;
useful notes from the email list:&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
http://www.mail-archive.com/pymol-users@lists.sourceforge.net/msg04272.html&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
http://www.mail-archive.com/pymol-users@lists.sourceforge.net/msg10266.html&lt;br /&gt;
&lt;br /&gt;
in one line convert dcd and psf to pdb :&lt;br /&gt;
&lt;br /&gt;
catdcd -o all.pdb -otype pdb -s autopsf.psf -stype psf out.dcd&lt;br /&gt;
&lt;br /&gt;
===SEE ALSO===&lt;br /&gt;
[[Load]], [[defer_builds_mode]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Commands|Load Traj]]&lt;br /&gt;
[[Category:Performance|Load Traj]]&lt;br /&gt;
[[Category:States|Load Traj]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Load_Traj&amp;diff=6813</id>
		<title>Load Traj</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Load_Traj&amp;diff=6813"/>
		<updated>2012-06-26T16:02:24Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* NOTES */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''load_traj''' reads trajectory files (currently just AMBER files).  The file extension is used to determine the format.  AMBER files must end in &amp;quot;.trj&amp;quot; &lt;br /&gt;
&lt;br /&gt;
In newer builds of PyMOL (namely, version 1.0 or newer), several additional formats are accepted.  CHARMM trajectories (&amp;quot;.dcd&amp;quot;) are also valid files and only require a structure to be loaded first while the trajectory file gets loaded as sequential states into the associated object.  However, it should be noted that, unless the [[defer_builds_mode]] is set (to 3), loading a large trajectory may take up a lot of RAM.&lt;br /&gt;
&lt;br /&gt;
===USAGE===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load_traj filename [,object [,state [,format [,interval [,average ]&lt;br /&gt;
                   [,start [,stop [,max [,selection [,image [,shift &lt;br /&gt;
                   ]]]]]]]]]&lt;br /&gt;
&amp;lt;/source&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.load_traj(filename,object='',state=0,format='',interval=1,&lt;br /&gt;
           average=1,start=1,stop=-1,max=-1,selection='all',image=1,&lt;br /&gt;
           shift=&amp;quot;[0.0,0.0,0.0]&amp;quot;)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===NOTES===&lt;br /&gt;
*You must first load a corresponding topology file before attempting to load a trajectory file.&lt;br /&gt;
*PyMOL does not know how to wrap the truncated octahedron used by Amber You will need to use the [http://amber.scripps.edu/tutorials/basic/tutorial5/index.html ptraj] program first to do this.&lt;br /&gt;
*The average option is not a running average.  To perform this type of average, use the [[smooth]] command after loading the trajectory file.&lt;br /&gt;
*For quickly viewing Trajectories as a movie, use the [[mset]] command to map each state to a movie frame.&lt;br /&gt;
&lt;br /&gt;
useful notes from the email list&lt;br /&gt;
http://www.mail-archive.com/pymol-users@lists.sourceforge.net/msg04272.html&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
http://www.mail-archive.com/pymol-users@lists.sourceforge.net/msg10266.html&lt;br /&gt;
&lt;br /&gt;
in one line convert dcd and psf to pdb :&lt;br /&gt;
&lt;br /&gt;
catdcd -o all.pdb -otype pdb -s autopsf.psf -stype psf out.dcd&lt;br /&gt;
&lt;br /&gt;
===SEE ALSO===&lt;br /&gt;
[[Load]], [[defer_builds_mode]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Commands|Load Traj]]&lt;br /&gt;
[[Category:Performance|Load Traj]]&lt;br /&gt;
[[Category:States|Load Traj]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Load_Traj&amp;diff=6812</id>
		<title>Load Traj</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Load_Traj&amp;diff=6812"/>
		<updated>2012-06-26T16:02:03Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''load_traj''' reads trajectory files (currently just AMBER files).  The file extension is used to determine the format.  AMBER files must end in &amp;quot;.trj&amp;quot; &lt;br /&gt;
&lt;br /&gt;
In newer builds of PyMOL (namely, version 1.0 or newer), several additional formats are accepted.  CHARMM trajectories (&amp;quot;.dcd&amp;quot;) are also valid files and only require a structure to be loaded first while the trajectory file gets loaded as sequential states into the associated object.  However, it should be noted that, unless the [[defer_builds_mode]] is set (to 3), loading a large trajectory may take up a lot of RAM.&lt;br /&gt;
&lt;br /&gt;
===USAGE===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load_traj filename [,object [,state [,format [,interval [,average ]&lt;br /&gt;
                   [,start [,stop [,max [,selection [,image [,shift &lt;br /&gt;
                   ]]]]]]]]]&lt;br /&gt;
&amp;lt;/source&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.load_traj(filename,object='',state=0,format='',interval=1,&lt;br /&gt;
           average=1,start=1,stop=-1,max=-1,selection='all',image=1,&lt;br /&gt;
           shift=&amp;quot;[0.0,0.0,0.0]&amp;quot;)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===NOTES===&lt;br /&gt;
*You must first load a corresponding topology file before attempting to load a trajectory file.&lt;br /&gt;
*PyMOL does not know how to wrap the truncated octahedron used by Amber You will need to use the [http://amber.scripps.edu/tutorials/basic/tutorial5/index.html ptraj] program first to do this.&lt;br /&gt;
*The average option is not a running average.  To perform this type of average, use the [[smooth]] command after loading the trajectory file.&lt;br /&gt;
*For quickly viewing Trajectories as a movie, use the [[mset]] command to map each state to a movie frame.&lt;br /&gt;
&lt;br /&gt;
useful notes from the email list&lt;br /&gt;
http://www.mail-archive.com/pymol-users@lists.sourceforge.net/msg04272.html&lt;br /&gt;
http://www.mail-archive.com/pymol-users@lists.sourceforge.net/msg10266.html&lt;br /&gt;
&lt;br /&gt;
in one line convert dcd and psf to pdb :&lt;br /&gt;
&lt;br /&gt;
catdcd -o all.pdb -otype pdb -s autopsf.psf -stype psf out.dcd&lt;br /&gt;
&lt;br /&gt;
===SEE ALSO===&lt;br /&gt;
[[Load]], [[defer_builds_mode]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Commands|Load Traj]]&lt;br /&gt;
[[Category:Performance|Load Traj]]&lt;br /&gt;
[[Category:States|Load Traj]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Nucleic_Acid_Sequence&amp;diff=7904</id>
		<title>Nucleic Acid Sequence</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Nucleic_Acid_Sequence&amp;diff=7904"/>
		<updated>2012-05-22T07:02:24Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* Building a Nucleic Acid Sequence */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Building a Nucleic Acid Sequence ==&lt;br /&gt;
At this time there is no known method by which to build nucleic acid sequences in PyMol.  &lt;br /&gt;
That being said, you can however use third party software to get the job done.  &lt;br /&gt;
&lt;br /&gt;
Check out these programs:&lt;br /&gt;
# [http://x3dna.org 3DNA]&lt;br /&gt;
# [http://www.scripps.edu/mb/case/Biomer/ B (aka &amp;quot;Biomer&amp;quot;)] &lt;br /&gt;
# [http://namot.lanl.gov/ NAMOT]&lt;br /&gt;
# Enter sequence into web interface and get a pdb file back (Uses NAB - Nucleic Acid Builder): http://structure.usc.edu/make-na/&lt;br /&gt;
# Enter sequence into web interface and get a pdb file back (Uses 3DNA): http://w3dna.rutgers.edu/rebuild/fiberch&lt;br /&gt;
# Enter sequence into web interface and get a pdb file back (Also uses 3DNA): http://haddock.science.uu.nl/services/3DDART/&lt;br /&gt;
&lt;br /&gt;
*More info on NAB at: http://casegroup.rutgers.edu/casegr-sh-2.2.html&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Git_install_scripts&amp;diff=7547</id>
		<title>Git install scripts</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Git_install_scripts&amp;diff=7547"/>
		<updated>2012-02-17T10:13:37Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: moved Git install to Git install scripts: Confusing title with an eventual git install of pymol source.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Manual download of scripts ==&lt;br /&gt;
If you don't have the option or want't to install git on your system, then go to&lt;br /&gt;
 https://github.com/Pymol-Scripts/Pymol-script-repo&lt;br /&gt;
Click the &amp;quot;ZIP&amp;quot; button, near the top left corner.&lt;br /&gt;
Now unpack the files to a directory. For example:&lt;br /&gt;
 C:/Users/YOURNAME/Documents/Pymol-script-repo&lt;br /&gt;
or&lt;br /&gt;
 /home/YOURNAME/Software/pymol&lt;br /&gt;
&lt;br /&gt;
Now go to: '''Adding Pymol-script-repo to PyMOL search path''' [http://www.pymolwiki.org/index.php/Git_install#Adding_Pymol-script-repo_to_PyMOL_search_path]&lt;br /&gt;
&lt;br /&gt;
== Git install instructions ==&lt;br /&gt;
=== For Windows users ===&lt;br /&gt;
# Install [http://code.google.com/p/msysgit/downloads/list?can=3&amp;amp;q=official+Git Git for Windows].&lt;br /&gt;
Use following settings in options, [http://www.geekgumbo.com/2010/04/09/installing-git-on-windows/ (You can read more here)].&lt;br /&gt;
* Windows Explorer Integration -&amp;gt; Context Menu Entries -&amp;gt; Git Bash Here + Git GUI here&lt;br /&gt;
* Run Git and included Unix tools from Windows Command prompts&lt;br /&gt;
* Checkout Windows style, commit Unix-style endings&lt;br /&gt;
&lt;br /&gt;
# Navigate to: '''C:\Users\YOURNAME\Documents\pymol'''&lt;br /&gt;
# Right click in folder -&amp;gt; Select: Git Gui -&amp;gt; Clone Existing Repository&lt;br /&gt;
# Source Location: git://github.com/Pymol-Scripts/Pymol-script-repo.git&lt;br /&gt;
# Target Directory: C:\\Users\\YOURNAME\\Documents\\pymol\Pymol-script-repo&lt;br /&gt;
#: A backslash &amp;quot;\&amp;quot; in a string is [http://effbot.org/pyref/string-literals.htm is used for escape sequences]. To get a real backslash in a string, use double backslash &amp;quot;\\&amp;quot;   &lt;br /&gt;
You now have all the scripts available in your directory.&lt;br /&gt;
&lt;br /&gt;
Add '''python.exe''' to your '''PATH''', so external .py scripts can be executed.&amp;lt;br&amp;gt;&lt;br /&gt;
Open control panel. Search for, and click: '''Edit environment variables for your account'''&amp;lt;br&amp;gt;&lt;br /&gt;
Add to end of variable PATH: ''';C:\Python27'''   (Or other path to your python python.exe)&amp;lt;br&amp;gt;&lt;br /&gt;
Click start button, and open '''cmd.exe'''. Try starting python by writing: '''python'''&lt;br /&gt;
&lt;br /&gt;
=== For Linux users ===&lt;br /&gt;
# Install git&lt;br /&gt;
 # Debian/Ubuntu/Mint&lt;br /&gt;
 sudo apt-get install git&lt;br /&gt;
 # Fedora&lt;br /&gt;
 su -c 'yum install git'&lt;br /&gt;
 # openSUSE&lt;br /&gt;
 sudo zypper in git&lt;br /&gt;
&lt;br /&gt;
# Navigate to desired folder: &lt;br /&gt;
 cd /home/YOURNAME/Software/pymol&lt;br /&gt;
 git clone git://github.com/Pymol-Scripts/Pymol-script-repo.git&lt;br /&gt;
You now have all the scripts available in: /home/YOURNAME/Software/pymol/Pymol-script-repo&lt;br /&gt;
&lt;br /&gt;
== Adding Pymol-script-repo to PyMOL search path ==&lt;br /&gt;
You now have to add the &amp;quot;Pymol-script-repo&amp;quot; directory to the PyMOL search path. &lt;br /&gt;
&lt;br /&gt;
The project also have automatically plugin installer: http://www.pymolwiki.org/index.php/plugindirectory &amp;lt;br&amp;gt;&lt;br /&gt;
This is activated with: '''import plugins'''. &amp;lt;br&amp;gt;&lt;br /&gt;
'''You have to remove old installations of plugins first, to get the automatic plugin installation to work.'''&lt;br /&gt;
=== For Windows users ===&lt;br /&gt;
# Open notepad&lt;br /&gt;
# Write (Remember double backslashes)&lt;br /&gt;
 import sys,os&lt;br /&gt;
 sys.path.append('C:\\Users\\YOURNAME\\Documents\\pymol\\Pymol-script-repo')&lt;br /&gt;
 os.environ['PYMOL_GIT_MOD']='C:\\Users\\YOURNAME\\Documents\\pymol\\Pymol-script-repo\\modules'&lt;br /&gt;
 import plugins&lt;br /&gt;
 os.chdir('C:\\Users\\YOURNAME\\Documents\\pymol')                                # Your standard working dir&lt;br /&gt;
Save under: '''C:\Users\YOURNAME\pymolrc.pym''' (Set: &amp;quot;Save as type&amp;quot; to &amp;quot;All files&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
=== For Linux users ===&lt;br /&gt;
 gedit ~/.pymolrc&lt;br /&gt;
Write&lt;br /&gt;
 import sys,os&lt;br /&gt;
 sys.path.append('/home/YOU/Software/pymol/Pymol-script-repo')&lt;br /&gt;
 os.environ['PYMOL_GIT_MOD']='/home/YOU/Software/pymol/Pymol-script-repo/modules'&lt;br /&gt;
 import plugins&lt;br /&gt;
 os.chdir('/home/YOU/Software/pymol/')                              # Your standard working dir&lt;br /&gt;
Save and exit&lt;br /&gt;
&lt;br /&gt;
== Test the Scripts ==&lt;br /&gt;
Now start PyMOL, and test in PyMOL.&lt;br /&gt;
 print sys.path&lt;br /&gt;
 import colorbydisplacement&lt;br /&gt;
 help(colorbydisplacement)&lt;br /&gt;
&lt;br /&gt;
== Get latest changes to scripts ==&lt;br /&gt;
If new scripts are available or changes have been made, then:&lt;br /&gt;
=== For windows users ===&lt;br /&gt;
# Navigate to '''C:\Users\YOURNAME\Documents\Pymol-script-repo'''&lt;br /&gt;
# Right click in folder -&amp;gt; Select: Git Bash&lt;br /&gt;
# Write in terminal&lt;br /&gt;
 git pull origin master&lt;br /&gt;
&lt;br /&gt;
=== For Ubuntu/Mint users ===&lt;br /&gt;
# Navigate to '''/home/YOURNAME/Software/pymol/Pymol-script-repo'''&lt;br /&gt;
# Write in terminal.&lt;br /&gt;
 git pull origin master&lt;br /&gt;
&lt;br /&gt;
= Do you want to contribute with a script? =&lt;br /&gt;
Information how to contribute scripts to the repository. It's easy! &amp;lt;br&amp;gt;&lt;br /&gt;
http://www.pymolwiki.org/index.php/git_authors&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Git_install&amp;diff=6053</id>
		<title>Git install</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Git_install&amp;diff=6053"/>
		<updated>2012-02-17T10:13:37Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: moved Git install to Git install scripts: Confusing title with an eventual git install of pymol source.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Git install scripts]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3674</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3674"/>
		<updated>2012-02-17T10:04:18Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* More */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] or  3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
== Invoking ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]Dr. Robert Campbell's website.&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
set ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:X3dna_r3d_pymol.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== More ==&lt;br /&gt;
&lt;br /&gt;
For more examples of figures obtained using 3DNA and pymol follow the next link:&lt;br /&gt;
[[http://mesguerra.net/render/render.htm]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Nucleic_Acids]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3673</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3673"/>
		<updated>2009-04-14T20:19:47Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* Invoking */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] or  3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
== Invoking ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]Dr. Robert Campbell's website.&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
set ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:X3dna_r3d_pymol.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== More ==&lt;br /&gt;
&lt;br /&gt;
For more examples of figures obtained using 3DNA and pymol follow the next link:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Nucleic_Acids]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3671</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3671"/>
		<updated>2009-02-24T12:09:56Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] or  3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
== Invoking ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
set ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:X3dna_r3d_pymol.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== More ==&lt;br /&gt;
&lt;br /&gt;
For more examples of figures obtained using 3DNA and pymol follow the next link:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Nucleic_Acids]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3670</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3670"/>
		<updated>2009-02-24T12:05:37Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] or  3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
== Invoking ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:X3dna_r3d_pymol.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== More ==&lt;br /&gt;
&lt;br /&gt;
For more examples of figures obtained using 3DNA and pymol follow the next link:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Nucleic_Acids]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3668</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3668"/>
		<updated>2008-03-07T20:22:33Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* More */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
== Invoking ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:X3dna_r3d_pymol.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== More ==&lt;br /&gt;
&lt;br /&gt;
For more examples of figures obtained using 3DNA and pymol follow the next link:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3667</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3667"/>
		<updated>2008-03-07T20:21:53Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* More */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
== Invoking ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:X3dna_r3d_pymol.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== More ==&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA and pymol:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3666</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3666"/>
		<updated>2008-03-07T20:18:57Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Overview ==&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
== Invoking ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:X3dna_r3d_pymol.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== More ==&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA for preprocessing can be found at:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=User_talk:Esguerra&amp;diff=10711</id>
		<title>User talk:Esguerra</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=User_talk:Esguerra&amp;diff=10711"/>
		<updated>2008-03-07T20:18:43Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: User talk:Esguerra moved to 3DNA&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[3DNA]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3665</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3665"/>
		<updated>2008-03-07T20:18:43Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: User talk:Esguerra moved to 3DNA&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= 3DNA =&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
== Invoking ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:X3dna_r3d_pymol.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== More ==&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA for preprocessing can be found at:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3664</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3664"/>
		<updated>2008-03-07T00:50:21Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= 3DNA =&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
== Invoking ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:X3dna_r3d_pymol.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== More ==&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA for preprocessing can be found at:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3663</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3663"/>
		<updated>2008-03-07T00:49:55Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
== Invoking ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:X3dna_r3d_pymol.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== More ==&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA for preprocessing can be found at:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3662</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3662"/>
		<updated>2008-03-07T00:45:52Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png|Using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
[[Image:X3dna_r3d_pymol.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA for preprocessing can be found at:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3661</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3661"/>
		<updated>2008-03-07T00:44:51Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png| using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
[[Image:X3dna_r3d_pymol.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA for preprocessing can be found at:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3660</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3660"/>
		<updated>2008-03-07T00:42:43Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png| using tb.pdb  and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
[[Image:X3dna_r3d_pymol.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA for preprocessing can be found at:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3659</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3659"/>
		<updated>2008-03-07T00:42:30Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png| using tb.pdb&lt;br /&gt;
and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
[[Image:X3dna_r3d_pymol.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA for preprocessing can be found at:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3658</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3658"/>
		<updated>2008-03-07T00:40:10Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:trna.png| using tb.pdb and t2.r3d&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
[[Image:X3dna_r3d_pymol.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA for preprocessing can be found at:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3657</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3657"/>
		<updated>2008-03-07T00:36:50Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:trna.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; from 3DNA v. 2.0 directly. Using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
[[Image:X3dna_r3d_pymol.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA for preprocessing can be found at:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3656</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3656"/>
		<updated>2008-03-07T00:34:10Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* 3DNA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed, and the path to their binaries correctly configured, you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:trna.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; on version 2.0 or 3DNA directly in the following way:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
[[Image:X3dna_r3d_pymol.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA for preprocessing can be found at:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3655</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3655"/>
		<updated>2008-03-07T00:33:36Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA[http://3dna.rutgers.edu] provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed and the path to their binaries correctly configured you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:trna.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; on version 2.0 or 3DNA directly in the following way:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
[[Image:X3dna_r3d_pymol.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA for preprocessing can be found at:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3654</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3654"/>
		<updated>2008-03-07T00:32:23Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed and the path to their binaries correctly configured you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:trna.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; on version 2.0 or 3DNA directly in the following way:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
[[Image:X3dna_r3d_pymol.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
More examples of figures obtained using 3DNA for preprocessing can be found at:&lt;br /&gt;
&lt;br /&gt;
[[http://www.eden.rutgers.edu/~esguerra/CHEMISTRY/nucleic_acids.html]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3653</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3653"/>
		<updated>2008-03-07T00:28:41Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed and the path to their binaries correctly configured you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:trna.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; on version 2.0 or 3DNA directly in the following way:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
[[Image:X3dna_r3d_pymol.png]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=File:X3dna_r3d_pymol.png&amp;diff=2899</id>
		<title>File:X3dna r3d pymol.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=File:X3dna_r3d_pymol.png&amp;diff=2899"/>
		<updated>2008-03-07T00:27:27Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3652</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3652"/>
		<updated>2008-03-07T00:26:04Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed and the path to their binaries correctly configured you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:trna.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; on version 2.0 or 3DNA directly in the following way:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the result is:&lt;br /&gt;
&lt;br /&gt;
[[Image:Example.jpg]]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3651</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3651"/>
		<updated>2008-03-07T00:02:33Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* 3DNA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster3D format, and are also processed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed and the path to their binaries correctly configured you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:trna.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; on version 2.0 or 3DNA directly in the following way:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3650</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3650"/>
		<updated>2008-03-07T00:01:56Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* 3DNA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids. The produced files are in raster image, and are also procesed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed and the path to their binaries correctly configured you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:trna.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; on version 2.0 or 3DNA directly in the following way:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3649</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3649"/>
		<updated>2008-03-07T00:00:30Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids, the produced files are in raster image, and are also procesed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed and the path to their binaries correctly configured you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:trna.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; on version 2.0 or 3DNA directly in the following way:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=File:Trna.png&amp;diff=2874</id>
		<title>File:Trna.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=File:Trna.png&amp;diff=2874"/>
		<updated>2008-03-06T23:59:17Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3648</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3648"/>
		<updated>2008-03-06T23:58:34Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids, the produced files are in raster image, and are also procesed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed and the path to their binaries correctly configured you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
[[Image:trna.png]]&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load tb.pdb&lt;br /&gt;
load t2.r3d&lt;br /&gt;
bg_color white&lt;br /&gt;
hide lines&lt;br /&gt;
zoom *,-5&lt;br /&gt;
set ray_trace_mode, 3&lt;br /&gt;
set ray_trace_fog, 0&lt;br /&gt;
sert ray_shadows, 0&lt;br /&gt;
set orthoscopic, 1&lt;br /&gt;
set antialias, 5&lt;br /&gt;
set valence, 1&lt;br /&gt;
util.cba(29)&lt;br /&gt;
color grey, (elem C)&lt;br /&gt;
cartoon arrow&lt;br /&gt;
set cartoon_ladder_mode, 0&lt;br /&gt;
set cartoon_rect_width, 0.2&lt;br /&gt;
set cartoon_rect_length, 0.5&lt;br /&gt;
show cartoon&lt;br /&gt;
set stick_radius, 0.14&lt;br /&gt;
show sticks&lt;br /&gt;
set_view (\&lt;br /&gt;
     0.680474579,   -0.153203458,   -0.716576934,\&lt;br /&gt;
     0.658882320,   -0.300013036,    0.689829707,\&lt;br /&gt;
    -0.320666909,   -0.941552401,   -0.103208199,\&lt;br /&gt;
    -0.000084338,    0.000022471, -263.030426025,\&lt;br /&gt;
    57.723434448,   45.338260651,   20.895099640,\&lt;br /&gt;
   218.710235596,  307.348541260,    1.000000000 )&lt;br /&gt;
set cartoon_color, green, resn G&lt;br /&gt;
set cartoon_color, yellow, resn C&lt;br /&gt;
set cartoon_color, red, resn A&lt;br /&gt;
set cartoon_color, cyan, resn U&lt;br /&gt;
ray 1024,768&lt;br /&gt;
png trna.png&lt;br /&gt;
quit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; on version 2.0 or 3DNA directly in the following way:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3647</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3647"/>
		<updated>2008-03-06T23:57:36Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* 3DNA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script (&amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt;) which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids, the produced files are in raster image, and are also procesed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed and the path to their binaries correctly configured you can get the block representation for any nucleic acid. The next example shows how to do it for tRNA (PDB:ID 1ehz)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
pdb_get.py 1ehz&lt;br /&gt;
blocview -o 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pdb_get python script comes from Dr. Robert Campbell's website http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py [http://pldserver1.biochem.queensu.ca/~rlc/work/scripts/pdb_get.py]&lt;br /&gt;
&lt;br /&gt;
Once blocview is run it will generate various r3d files which can be combined with the original pdb files to produce the following image:&lt;br /&gt;
&lt;br /&gt;
[[Image:Example.jpg]]&lt;br /&gt;
&lt;br /&gt;
To generate the previous image the following script was used:&lt;br /&gt;
trna.pml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An automatically generated pymol ray traced image can also be obtained by running &amp;lt;b&amp;gt;blocview&amp;lt;/b&amp;gt; on version 2.0 or 3DNA directly in the following way:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
blocview -o -t=100 1ehz.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3646</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3646"/>
		<updated>2008-03-06T22:11:52Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* 3DNA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids, the produced files are in raster image, and are also procesed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;br /&gt;
&lt;br /&gt;
Once you have the previous software installed and the path to their binaries correctly configured you just need to run from a terminal window:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
blocview -o pdbfile.pdb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3645</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3645"/>
		<updated>2008-03-06T22:07:24Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* 3DNA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids, the produced files are in raster image, and are also procesed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5 [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0 [http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3644</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3644"/>
		<updated>2008-03-06T22:04:59Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* 3DNA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids, the produced files are in raster image, and are also procesed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- &amp;lt;a href=&amp;quot;http://rutchem.rutgers.edu/~xiangjun/3DNA&amp;quot;&amp;gt;3DNA V1.5&amp;lt;/a&amp;gt;[http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0[http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3643</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3643"/>
		<updated>2008-03-06T22:03:13Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* 3DNA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids, the produced files are in raster image, and are also procesed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA V1.5[http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
&lt;br /&gt;
- 3DNA V2.0[http://3dna.rutgers.edu/]&lt;br /&gt;
&lt;br /&gt;
- Raster 3D [http://skuld.bmsc.washington.edu/raster3d/raster3d.html]&lt;br /&gt;
&lt;br /&gt;
- Molscript [http://www.avatar.se/molscript/download.html]&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3642</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3642"/>
		<updated>2008-03-06T22:01:02Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* 3DNA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids, the produced files are in raster image, and are also procesed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
- Raster 3D&lt;br /&gt;
- Molscript&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3641</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3641"/>
		<updated>2008-03-06T22:00:50Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: /* '''3DNA''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 3DNA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids, the produced files are in raster image, and are also procesed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
- Raster 3D&lt;br /&gt;
- Molscript&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3640</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3640"/>
		<updated>2008-03-06T22:00:21Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''3DNA''' ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids, the produced files are in raster image, and are also procesed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
- Raster 3D&lt;br /&gt;
- Molscript&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3639</id>
		<title>3DNA</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=3DNA&amp;diff=3639"/>
		<updated>2008-03-06T21:59:58Z</updated>

		<summary type="html">&lt;p&gt;Esguerra: New page: 3DNA  ----   3DNA provides a perl script which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids, the produced files are in raster...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;3DNA&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3DNA provides a perl script which produces Calladine-Drew style block representations based on the standard reference frame for nucleic acids, the produced files are in raster image, and are also procesed by molscript. Therefore to produce the following representations you will need to install:&lt;br /&gt;
&lt;br /&gt;
- 3DNA [http://rutchem.rutgers.edu/~xiangjun/3DNA] &lt;br /&gt;
- Raster 3D&lt;br /&gt;
- Molscript&lt;/div&gt;</summary>
		<author><name>Esguerra</name></author>
	</entry>
</feed>