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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
|
<html><head><title></title></head>
<body>
<a name="92526">
<h1>1.0 </a>Introduction</h1>
</a>
<a name="92643">
The </a>PACT system provides a number of tools for working with </a>PDB files in a fairly generic fashion. In particular, </a>PDBView lets you interactively browse a PDB file displaying the contents graphically or textually.<p>
</a>
<a name="92650">
PDBView is an SX program. </a>SX is the </a>SCHEME dialect of the </a>LISP programming language with PACT extensions. The extensions provide functionality for graphics, binary data handling, and other areas of functionality.<p>
</a>
<a name="92651">
PDBView has a </a>help command which provides information about available commands. <p>
</a>
<a name="92584">
<h1>2.0 </a>PDBView Syntax</h1>
</a>
<a name="92750">
PDBView uses a slightly different data description </a>syntax than </a>PDBLib. With PDBLib </a>variable names and </a>names of </a>members of </a>structures cannot contain the characters: “</a>.”, “</a>(“, “</a>)”, “</a>[“, and “</a>]”. The characters “(“, “)”, “</a>[“, and “</a>]” are used in array reference and dimension definition expressions. In PDBView, “(“ and “)” CANNOT be used in variable reference expressions because they are special characters for PDBView. For example,<p>
</a>
<A NAME="92751"><PRE> print a(2)
</PRE><a name="92752">
is illegal and results in an error. The legal expression is:<p>
</a>
<A NAME="92753"><PRE> print a[2]
</PRE><a name="92754">
Other examples of legal expressions are:<p>
</a>
<A NAME="92755"><PRE> print a.b[3,2]
</PRE><A NAME="92756"><PRE> print a.b[3][2]
</PRE><A NAME="92757"><PRE> print a[3].b[2][5].c
</PRE><A NAME="92758"><PRE> print a[3].b[2][3].c[3:4,5:50:10]
</PRE><a name="92759">
The first two forms are not identical. In the first form an element of a two dimensional array is being referenced. In the second form, the third element of the fourth array of arrays is being referenced (assuming zero based indexing in the definition of the b member of a).<p>
</a>
<a name="92760">
For completeness and clarity in the following discussion, an </a>index expression is defined as:<p>
</a>
<A NAME="92761"><PRE> </a>index expression := [index list]
</PRE><A NAME="92762"><PRE> </a>index list := index | index, index list
</PRE><A NAME="92763"><PRE> </a>index := simple index |
</PRE><A NAME="92764"><PRE> index-min : index-max | (*)
</PRE><A NAME="92765"><PRE> index-min : index-max : increment (*)
</PRE><A NAME="92766"><PRE> </a>simple index := integer
</PRE><A NAME="92767"><PRE> </a>index-min := integer
</PRE><A NAME="92768"><PRE> </a>index-max := integer
</PRE><A NAME="92769"><PRE> </a>increment := integer
</PRE><a name="92770">
If an index expression uses either of the two starred forms it is said to be a </a>hyper-index expression. A hyper-index expression implies more than one data item. Only the </a>terminating index expression in a </a>data reference may be a hyper-index expression. An index expression is said to </a>dereference an </a>indirection (or</a> pointer or array). For each </a>level of indirection a suitable index expression </a>dereferences the desired data.<p>
</a>
<a name="92771">
For example, this means that a variable defined as:<p>
</a>
<A NAME="92772"><PRE> char **s
</PRE><a name="92773">
is said to have two </a>levels of indirection and can have parts accessed as follows:<p>
</a>
<A NAME="92774"><PRE> print s prints the entire item
</PRE><A NAME="92775"><PRE> print s[2] prints the third character array of s
</PRE><A NAME="92776"><PRE> print s[3][10] prints the eleventh character of the fourth character array of s
</PRE><a name="92777">
In the above example a zero based index is assumed.<p>
</a>
<a name="92542">
When referring to part of a variable, especially a structured variable, the terminal node must be of primitive type or a structure containing no indirections and whose descendant members contain no indirections. Furthermore, the path to the desired part must contain one array reference for each level of </a>indirection traversed.<p>
</a>
<a name="92592">
<h1>3.0 </a>Starting PDBView</h1>
</a>
<a name="92626">
On UNIX systems a shell script called </a>pdbview is provided; it starts up </a>SX which then loads the PDBView </a>SCHEME forms. You must add a line to your </a>.cshrc or </a>.profile file that defines the </a>environment variable SCHEME. This variable tells SX where to find the PDBView SCHEME files. Consult your system administrator or some other knowledgeable source to find out where these files are located on your system. If, for example, the directory /usr/local/scheme contains the PDBView SCHEME files, add the line:<p>
</a>
<A NAME="92627"><PRE> </a>setenv SCHEME </a>/usr/local/scheme
</PRE><a name="92629">
to your .cshrc or .profile file.<p>
</a>
<A NAME="92630"><BR><B>Usage: pdbview [</a>-d] [</a>-h] [</a>-l command-file] [</a>-p n] [data-file]
</B><BR><A NAME="92633"></a>Options:
<P><A NAME="92653"><PRE> d - </a>dump the formatted contents of the data file in ASCII to stdout
</PRE><A NAME="92625"><PRE> h - print </a>execute line information to stdout
</PRE><A NAME="92658"><PRE> l - </a>load SCHEME forms (e.g. PDBView commands) from a file
</PRE><A NAME="92715"><PRE> (not available with -d option)
</PRE><A NAME="92729"><PRE> p - </a>number of digits to use in displaying </a>floating point numbers
</PRE><A NAME="92730"><PRE> (only available with -d option)
</PRE><a name="92620">
<h1>4.0 </a>PDBView Commands</h1>
</a>
<a name="92607">
In this section the PDBView commands are listed alphabetically. The command name is followed by </a>synonyms, if any. Each command is given with a brief description of its function and its usage. The examples are intended to illustrate the various ways of invoking each command. Optional arguments are enclosed in brackets. Alternate argument forms are separated by ‘|’. Formal arguments in italic font are replaced by actual arguments. Command and argument keywords are in regular non-italic font.<p>
</a>
<a name="92723">
The file most recently referred to in a </a>cf (</a>change-file) command is the </a>current file. Most commands implicitly refer to the current file or its contents. Some commands permit another file to be explicitly specified. A file may be referred to by name or by the </a>alias assigned when the file was opened. Commands that operate on the contents of more than one file (e.g. copy, copy-mapping), require that the target file be specified, while the current file is assumed to be the source.<p>
</a>
<a name="92731">
For the sake of brevity all menu items including mappings, images, and ULTRA curves are collectively referred to as mappings. All commands that accept mappings as arguments, accept images and curves as well.<p>
</a>
<A NAME="92664"><BR><B></a>CD
</B><BR><a name="92671">
</a>Change the current file </a>directory. The new directory may be specified by either a </a>relative path or a </a>full path.<p>
</a>
<A NAME="92683">Usage: cd [directory]
<P><A NAME="92689">Examples:
<P><A NAME="92699"><PRE> cd /zoo/mammals
</PRE><A NAME="92706"><PRE> cd ../reptiles
</PRE><A NAME="92727"><PRE> cd
</PRE><A NAME="92523"><BR><B></a>CHANGE
</B><BR><a name="92605">
Reset a single value in a variable or structure member. Note that the command keyword may be omitted. To change an array element, qualify the name with </a>index expressions. (See the </a>PDBView Syntax section for a discussion of index expressions.)<p>
</a>
<A NAME="92608">Usage: [change] variable | structure-member value
<P><A NAME="92618">Examples:
<P><A NAME="92619"><PRE> change a[10,15] 3.5
</PRE><A NAME="92624"><PRE> change time 0.0
</PRE><A NAME="92638"><PRE> a[5,10,3] 5.7e4
</PRE><A NAME="92686"><PRE> dir1/jkl.k 2
</PRE><A NAME="92587"><BR><B></a>CHANGE-FILE / </a>CF / </a>OPEN
</B><BR><a name="92589">
</a>Change the </a>current file. If it is not already open, </a></a>open the file. Many commands refer to the current file or its contents by default. Any number of files may be open - only one is the current file. The mode may be: r, open file read only; a, open file read/write (default); or w, overwrite any existing file. If no alias is specified, fd is assigned, where d is an increasing decimal integer. The options available for type are determined by the output spokes you have installed. The default type is pdb.<p>
</a>
<A NAME="92600">Usage: change-file filename [mode [alias [type]]]
<P><A NAME="92617">Examples:
<P><A NAME="92646"><PRE> change-file foo
</PRE><A NAME="92660"><PRE> cf foo a
</PRE><A NAME="92661"><PRE> open foo w bar pdb
</PRE><A NAME="92537"><BR><B></a>CLOSE
</B><BR><a name="92540">
</a>Close a file. The default is to close the current file.<p>
</a>
<A NAME="92606">Usage: close [file]
<P><A NAME="92623">Examples:
<P><A NAME="92647"><PRE> close
</PRE><A NAME="92726"><PRE> close foo
</PRE><A NAME="92717"><PRE> close f1
</PRE><A NAME="92593"><BR><B></a>CLOSE-WINDOW / </a>CLW
</B><BR><a name="92663">
</a>Close a </a>graphics </a>window. If no window is specified, close the current window.<p>
</a>
<A NAME="92673">Usage: close-window [window]
<P><A NAME="92636">Examples:
<P><A NAME="92637"><PRE> close-window “ABC”
</PRE><A NAME="92728"><PRE> clw
</PRE><A NAME="92538"><BR><B></a>COMMAND-LOG
</B><BR><a name="92560">
Turn </a>logging of typed commands on or off. A </a>log file name may be specified in place of the keyword on. The default log file name is pdbview.log. If the log file already exists, it is appended to. Logging is off by default.<p>
</a>
<A NAME="92565">Usage: command-log [on | off | filename]
<P><A NAME="92567">Examples:
<P><A NAME="92569"><PRE> command-log on
</PRE><A NAME="92581"><PRE> command-log mylog2
</PRE><A NAME="92784"><BR><B></a>COPY
</B><BR><a name="92785">
Copy variables from the current file directory to another file. If the variable list is *, copy all variables in the current file directory. The target file must be open and may be specified by name or alias.<p>
</a>
<A NAME="92787">Usage: copy target-file variable-list
<P><A NAME="92786">Examples:
<P><A NAME="92788"><PRE> copy foo *
</PRE><A NAME="92740"><PRE> copy f3 bird cat dog
</PRE><A NAME="92536"><BR><B></a>COPY-MAPPING / </a>CM
</B><BR><a name="92688">
</a>Copy mappings from the current file directory to another file. </a>Mappings are referenced by the numbers displayed by the </a>menu command. If the mapping list is *, copy all mappings in the current file directory. The target file must be open and may be specified by name or alias.<p>
</a>
<A NAME="92690">Usage: copy-mapping target-file mapping-list
<P><A NAME="92691">Examples:
<P><A NAME="92697"><PRE> copy-mapping foo 1 5
</PRE><A NAME="92702"><PRE> cm f2 *
</PRE><A NAME="92547"><BR><B></a>DESC
</B><BR><a name="92528">
</a>Describe </a>variables or </a>structure </a>members in the current file directory. To get a description of part of a variable or structure member, qualify the name with </a>index expressions. (See the </a>PDBView Syntax section for a discussion of index expressions.) If a </a>selection </a>pattern is specified in place of a variable name, all variables matching the pattern will be described. Each ‘</a>?’ in the pattern matches any single character. Each ‘</a>*’ in the pattern matches any string of zero or more characters. An optional </a>type qualifier may also be specified in order restrict the list to a given type.<p>
</a>
<A NAME="92551">Usage: desc variable | structure-member | pattern [type]
<P><A NAME="92524">Examples:
<P><A NAME="92533"><PRE> desc Mapping1
</PRE><A NAME="92521"><PRE> desc dir1/a.b.c[12:14]
</PRE><A NAME="92891"><PRE> desc * double
</PRE><A NAME="92892"><PRE> desc var? integer
</PRE><A NAME="92535"><BR><B></a>DISPLAY-MAPPING / </a>DM / </a>PL
</B><BR><a name="92556">
</a>Plot the specified mappings. Mappings are referenced by the numbers displayed by the </a>menu command or by the names of variables containing mapping information.<p>
</a>
<A NAME="92558">Usage: display-mapping mapping-list
<P><A NAME="92570">Examples:
<P><A NAME="92580"><PRE> display-mapping 5
</PRE><A NAME="92582"><PRE> dm dir1/Mapping8
</PRE><A NAME="92597"><PRE> pl 5 8
</PRE><A NAME="92546"><BR><B></a>END / </a>QUIT
</B><BR><a name="92588">
End the session of PDBView.<p>
</a>
<A NAME="92739">Usage: end
<P><A NAME="92590"><BR><B>FILE
</B><BR><a name="92614">
</a>Describe the current file. Optionally, the </a>file </a>type alone may be requested.<p>
</a>
<A NAME="92897">Usage: file [t | type]
<P><A NAME="92898">Example:
<P><A NAME="92900"><PRE> file type
</PRE><A NAME="92902"><BR><B></a>FORMAT
</B><BR><a name="92741">
</a>Set the </a>printing format for a specified </a>data </a>type. If the argument specifying the type has ‘</a>1’ or ‘</a>2’ appended, then the new format is applied only to arrays shorter than </a>array-length or to arrays longer than or equal to array-length, respectively. Otherwise, the format applies to both. Invoking the format command with the single argument, </a>default, causes the formats for all types to be reset to their default values. The format argument must be a Standard C I/O Library format string. </a>Double </a>quotes are only necessary if the format string contains </a>embedded </a>blanks. See the </a>set command for more information about the array-length variable. This command overrides the settings of the </a>decimal-precision and </a>bits-precision </a>display </a>control </a>parameters.<p>
</a>
<A NAME="92742">Usage: format </a>integer[1 | 2] | </a>long[1 | 2] | </a>float[1 | 2] |
<P><A NAME="92743"><PRE> </a>double[1 | 2] | </a>short[1 | 2] | </a>char[1 | 2] format
</PRE><A NAME="92744">Usage: format default
<P><A NAME="92745">Examples:
<P><A NAME="92746"><PRE> format double </a>%12.5</a>e
</PRE><A NAME="92747"><PRE> format double2 %10.2e
</PRE><A NAME="92748"><PRE> format char “</a>%s “
</PRE><A NAME="92594"><BR><B></a>HARDCOPY-WINDOW / </a>HC / </a>HCW
</B><BR><a name="92550">
</a>Draw the contents of the current window to all open </a>hardcopy devices. Color output is indicated by the optional keyword, </a>color, on the first call for a given device. The </a>resolution is decreased below full device resolution by an integer </a>resolution scale factor, if present. Hardcopy files remain open until explicitly closed or until PDBView is terminated.<p>
</a>
<A NAME="92596">Usage: hardcopy-window [</a>color] [resolution-scale-factor]
<P><A NAME="92665">Examples:
<P><A NAME="92666"><PRE> hardcopy-window
</PRE><A NAME="92667"><PRE> hc color 8
</PRE><A NAME="92602"><BR><B></a>HELP
</B><BR><a name="92553">
Print a </a>list of commands or documentation for an optionally specified command.<p>
</a>
<A NAME="92603">Usage: help [command]
<P><A NAME="92539">Examples:
<P><A NAME="92545"><PRE> help
</PRE><A NAME="92604"><PRE> help menu
</PRE><A NAME="92543"><BR><B></a>LD
</B><BR><a name="92557">
</a>Read SCHEME forms (e.g. PDBView commands) from the specified ASCII disk file. The </a>-l </a>execute line option can be used to cause PDBView to read a file of SCHEME forms at start-up.<p>
</a>
<A NAME="92561">Usage: ld filename
<P><A NAME="92562">Example:
<P><A NAME="92621"><PRE> ld script.scm
</PRE><A NAME="92732"><BR><B></a>LIST-FILES / </a>LF
</B><BR><a name="92733">
</a>List the open files. The current file is indicated by an asterisk.<p>
</a>
<A NAME="92734">Usage: list-files
<P><A NAME="92735">Examples:
<P><A NAME="92736"><PRE> list-files
</PRE><A NAME="92738"><PRE> lf
</PRE><A NAME="92719"><BR><B></a>LS
</B><BR><a name="92720">
</a>List the names of variables, links, and directories in the </a>current file </a>directory. Directories have a terminal slash. An optional </a>selection </a>pattern may be specified. Each ‘</a>?’ in the pattern matches any single character. Each ‘</a>*’ in the pattern matches any string of zero or more characters. An optional </a>type qualifier may also be specified in order restrict the list to a given type.<p>
</a>
<A NAME="92721">Usage: ls [pattern [type]]
<P><A NAME="92722">Examples:
<P><A NAME="92724"><PRE> ls dir1/curve*
</PRE><A NAME="92725"><PRE> ls var? integer
</PRE><A NAME="92517"><PRE> ls * Directory
</PRE><A NAME="92559"><BR><B></a>LS-ATTR
</B><BR><a name="92628">
</a>List the attributes in the current file.<p>
</a>
<A NAME="92632">Usage: ls-attr
<P><A NAME="92704"><BR><B></a>MENU
</B><BR><a name="92705">
</a>List the labels of </a>mappings in the current file directory. The ordinals preceding the labels are used to reference the mappings in other commands. An optional </a>selection </a>pattern may be specified. Each ‘</a>?’ in the pattern matches any single character in a label. Each ‘</a>*’ in the pattern matches any string of zero or more characters. Note that the pattern, if supplied, must match the entire label. Liberal use of “*”<p>
</a>
<A NAME="92707">Usage: menu [pattern]
<P><A NAME="92712">Examples:
<P><A NAME="92714"><PRE> menu
</PRE><A NAME="92716"><PRE> menu ?*d
</PRE><A NAME="92718"><PRE> menu *foo*
</PRE><A NAME="92642"><BR><B></a>MODE
</B><BR><a name="92579">
Set the </a>print mode for </a>structures.<p>
</a>
<a name="92586">
</a>Display modes are:<p>
</a>
<A NAME="92572"><PRE> </a>full-path - the full path name is printed at each </a>branch, e.g. foo.bar[3].baz
</PRE><A NAME="92648"><PRE> </a>indent - indent 4 spaces at each branch (default)
</PRE><A NAME="92652"><PRE> </a>tree - display as a tree (lines connecting branches)
</PRE><a name="92568">
</a>Type display is controlled by:<p>
</a>
<A NAME="92564"><PRE> </a>no-type - turns off the display of types (default)
</PRE><A NAME="92563"><PRE> </a>type - displays the type of each item and branch
</PRE><A NAME="92654"> </a>Display of </a>recursive structures is controlled by:
<P><A NAME="92566"><PRE> </a>recursive - indent each level of recursive structures
</PRE><A NAME="92655"><PRE> </a>iterative - number each level of recursive structures (default)
</PRE><A NAME="92657">Usage: mode full-path | indent | tree | no-type | type | recursive | iterative
<P><A NAME="92662">Example:
<P><A NAME="92585"><PRE> mode full-path
</PRE><A NAME="92672"><BR><B></a>N-ENTRIES
</B><BR><a name="92782">
Print the total number of variables, links, and directories in the current file.<p>
</a>
<A NAME="92783">Usage: n-entries
<P><A NAME="92541"><BR><B></a>PALETTE
</B><BR><a name="92552">
</a>Set the current </a>color palette.<p>
</a>
<A NAME="92622">Usage: palette </a>standard | </a>spectrum | </a>rainbow | </a>bw
<P><A NAME="92571">Example:
<P><A NAME="92649"><PRE> palette rainbow
</PRE><A NAME="92668"><BR><B></a>PLOT
</B><BR><a name="92669">
Plot one variable or part of a variable (range) against another (domain). Plot versus index (logical) if no domain given.<p>
</a>
<A NAME="92591">Usage: plot </a>range [</a>domain]
<P><A NAME="92674">Examples:
<P><A NAME="92670"><PRE> plot y x
</PRE><A NAME="92737"><PRE> plot z
</PRE><A NAME="92656"><PRE> plot dir1/ddd[0:60, 0:15, 20]
</PRE><A NAME="92676"><BR><B></a>PRINT-MAPPING / </a>PM
</B><BR><a name="92677">
</a>Print out the specified </a>mappings. Mappings are referenced by the numbers displayed by the </a>menu command.<p>
</a>
<A NAME="92678">Usage: print-mapping mapping-list
<P><A NAME="92679">Example:
<P><A NAME="92680"><PRE> print-mapping 3 4
</PRE><A NAME="92675"><BR><B></a>PRINT
</B><BR><a name="92612">
Print out all or part of the specified </a>variable or </a>structure member. Note that the command keyword may be omitted. To </a>print part of a variable or structure member, qualify the name with </a>index expressions. (See the </a>PDBView Syntax section for a discussion of index expressions.)<p>
</a>
<A NAME="92639">Usage: [print] variable | structure-member
<P><A NAME="92631">Examples:
<P><A NAME="92522"><PRE> Mapping2
</PRE><A NAME="92640"><PRE> print Mapping4.domain.elements
</PRE><A NAME="92641"><PRE> print dir1/Mapping2.range.elements[1]
</PRE><A NAME="92644"><PRE> a[5,10:20,1:8:3]
</PRE><A NAME="92645"><PRE> print a.b[3].c[5,10:20,1:8:3]
</PRE><A NAME="92525"><BR><B></a>PWD
</B><BR><a name="92529">
</a>Print the </a>current file </a>directory.<p>
</a>
<A NAME="92659">Usage: pwd
<P><A NAME="92554"><BR><B></a>SET
</B><BR><A NAME="92609">Set the value of some </a>array </a>display </a>parameters. Parameters:
<P><A NAME="92555"><PRE> </a>line-length - the </a>number of array elements per line
</PRE><A NAME="92611"><PRE> </a>array-length - for arrays shorter than value, </a>label each element individually
</PRE><A NAME="92682"><PRE> </a>bits-precision - </a>number of </a>mantissa </a>bits of </a>precision
</PRE><A NAME="92681"><PRE> </a>decimal-precision - </a>number of </a>digits of precision
</PRE><A NAME="92613">Usage: set line-length | array-length | bits-precision | decimal-precision value
<P><A NAME="92684">Examples:
<P><A NAME="92615"><PRE> set line-length 3
</PRE><A NAME="92616"><PRE> set decimal-precision 6
</PRE><A NAME="92695"><BR><B></a>STRUCT
</B><BR><a name="92598">
</a>Describe the specified data type in the current file.<p>
</a>
<A NAME="92599">Usage: struct data-type
<P><A NAME="92685">Examples:
<P><A NAME="92595"><PRE> struct double
</PRE><A NAME="92698"><PRE> struct PM_mapping
</PRE><A NAME="92703"><BR><B></a>TYPES
</B><BR><a name="92601">
</a>List the data types in the current file.<p>
</a>
<A NAME="92687">Usage: types
<P><a name="92708">
<h1>5.0 </a>Default State</h1>
</a>
<a name="92610">
The state in which PDBView starts out is:<p>
</a>
<ul><a name="92709">
<li> </a>mode </a>iterative
</a>
<a name="92710">
<li> mode </a>indent
</a>
<a name="92694">
<li>mode </a>no-type
</a>
<a name="92711">
<li>set </a>array-length 6
</a>
<a name="92692">
<li>set </a>line-length 3
</a>
<a name="92693">
<li>set </a>decimal-precision 4
</a>
<a name="92634">
<li></a>palette spectrum
</a>
<a name="92635">
<li></a>command-log off
</a>
</ul><a name="92713">
<h1>6.0 Other </a>PACT </a>Documents</h1>
</a>
<a name="92530">
Interested readers may wish to refer to the other PACT documents which describe the data structures and functionality underlying the more common </a>PDB files upon which PDBView operates. The </a>PANACEA, </a>PGS, and </a>PDBLib </a>manuals are of special interest to people who wish to generate and view data files with PACT.<p>
</a>
<a name="92789">
The list of PACT Documents is:<p>
</a>
<A NAME="92790"><PRE> PACT User’s Guide, UCRL-MA-112087
</PRE><A NAME="92791"><PRE> SCORE User’s Manual, UCRL-MA-108976 Rev.1
</PRE><A NAME="92792"><PRE> PPC User’s Manual UCRL-MA-108964 Rev.1
</PRE><A NAME="92793"><PRE> PML User’s Manual, UCRL-MA-108965 Rev.1
</PRE><A NAME="92794"><PRE> PDBLib User’s Manual, M-270 Rev.2
</PRE><A NAME="92795"><PRE> PGS User’s Manual, UCRL-MA-108966 Rev.1
</PRE><A NAME="92796"><PRE> PANACEA User’s Manual, M-276 Rev.2
</PRE><A NAME="92797"><PRE> ULTRA II User’s Manual, UCRL-MA-108967 Rev.1
</PRE><A NAME="92798"><PRE> PDBDiff User’s Manual, UCRL-MA-108975 Rev.1
</PRE><A NAME="92799"><PRE> PDBView User’s Manual, UCRL-MA-108968 Rev.1 (this document)
</PRE><A NAME="92800"><PRE> SX User’s Manual, UCRL-MA-112315
</PRE><a name="92534">
<p>
</a>
<p><hr>
</body></html>
|