1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
.ad l
.nh
.TH RIBBON 1 "8 May 1999" "Raster3D"
.SH NAME
ribbon - Raster3D molecular graphics package ribbon-drawer
.SH SYNOPSIS
"ribbon" [\fI-h\fP] [\fI-d[0123456]\fP] pdbfile
or
"ribbon" [\fI-h\fP] \fI-d[0123456]\fP - (to take PDB records from stdin)
.PP
\fIRibbon\fP reads a PDB coordinate file and
produces a file on stdout containing Raster3D descriptor
records for a ribbon representation constructed from a triangular mesh.
The file produced by \fIribbon\fP
may be fed directly to \fIrender\fP or it may be combined with descriptor
files produced by other Raster3D utilities.
.PP
.SH EXAMPLES
.PP
To describe a the entire protein chain as a single ribbon colored
smoothly from blue at the N-terminus to red at the C-terminus:
.PP
ribbon -d2 protein.pdb | render > chain_picture.png
.PP
To color a multi-chain protein with specified colors for each chain:
.PP
cat chaincolors.pdb protein.pdb | ribbon -d5 - > chains.r3d
.SH OPTIONS
.B "-h"
.PP
Suppress header records in output.
By default \fIribbon\fP will produce an output file which starts with
header records containing a default set of scaling and processing
options.
The \fI-h\fP flag will suppress these header records so that the output
file contains only triangle descriptors.
This option is useful for producing files which describe only part
of a scene, and which are to be later combined with descriptor files
produced by other programs.
.B "-d[0123456]"
.PP
By default \fIribbon\fP requires interactive input to select
ribbon parameters and coloring information. Five default coloring
schemes are implemented, however, and these may be selected as a
command line option to bypass any interactive input.
.TP 5
-d or -d0 same as -d2 below
.TP 5
-d1 solid color ribbon (defaults to blue)
.TP 5
-d2 shade from blue at N-terminus to red at C-terminus
.TP 5
-d3 one surface of ribbon is blue, other surface is grey
.TP 5
-d4 shade front surface from blue to red, back surface is grey
.TP 5
-d5 color separate chains using successive color cards
from input stream. Note that pattern matching on the color
records is _not_ done; colors are simply taken sequentially
as new chains are encountered.
.TP 5
-d6 Color by nearest CA atom as taken from the COLOUR
records at the head of the input file
.SH DESCRIPTION
.PP
The input to \fIribbon\fP consists of a single text file
containing colour information [optional] and atomic coordinates in
PDB data bank format.
Only CA and carbonyl O atom records are required;
all other input atoms are ignored.
Ribbon parameters and colouring specified interactively when the
program is run.
Keyboard interaction may be bypassed by selecting one of the default
colouring schemes using the -d flag.
A triangular mesh ribbon is output as Raster3D descriptor records.
By default the output file contains a set of header records as
required by the \fIrender\fP program.
The header is constructed to include a TMAT matrix corresponding to
the transformation matrix contained in
file \fIsetup.matrix\fP (if it exists), or to the Eulerian angles
contained in file \fIsetup.angles\fP (if it exists).
\fIRibbon\fP produces a continuous smooth trace of the protein backbone.
For more complicated representations of protein secondary structure it
is better to use a different program, e.g. MOLSCRIPT, rather than \fIribbon\fP.
.SH ENVIRONMENT
.PP
The files setup.matrix and setup.angles, if they exist, affect the
header records produced by \fIribbon\fP.
.SH SOURCE
.B anonymous ftp site:
ftp.bmsc.washington.edu
.B web URL:
http://www.bmsc.washington.edu/raster3d/raster3d.html
.B contact:
Ethan A Merritt
University of Washington, Seattle WA 98195
merritt@u.washington.edu
.SH SEE ALSO
MOLSCRIPT(l), render(l), rods(l), balls(l)
.PP
.SH AUTHORS
Original ribbon code written by Phil Evans for the CCP4
version of FRODO. Modification to describe solid ribbons
as triangular mesh for Phong shading in Raster3D package
by Ethan A Merritt.
|