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
|
PyMOL>load dat/pept.pdb
CmdLoad: "dat/pept.pdb" loaded as "pept".
PyMOL>show sticks,pept
PyMOL>set ray_default_renderer=2
Setting: ray_default_renderer set to 2.
PyMOL>ray
RayRenderTest: obtained 166 graphics primitives.
PyMOL>dele all
PyMOL>load dat/il2.pdb
CmdLoad: "dat/il2.pdb" loaded as "il2".
PyMOL>show dots,il2
PyMOL>ray
RayRenderTest: obtained 111078 graphics primitives.
PyMOL>dele all
PyMOL>load dat/3al1.pdb
HEADER STRUCTURAL PROTEIN 26-OCT-98 3AL1
TITLE DESIGNED PEPTIDE ALPHA-1, RACEMIC P1BAR FORM
COMPND MOL_ID: 1;
COMPND 2 MOLECULE: D, L-ALPHA-1;
COMPND 3 CHAIN: A, B;
COMPND 4 ENGINEERED: YES;
COMPND 5 OTHER_DETAILS: N TERMINI ARE ACETYLATED
ObjectMolecule: Read secondary structure assignments.
ObjectMolecule: Read crystal symmetry information.
Symmetry: Found 2 symmetry operators.
CmdLoad: "dat/3al1.pdb" loaded as "3al1".
PyMOL>show sph,3al1
PyMOL>ray
RayRenderTest: obtained 1945 graphics primitives.
PyMOL>dele all
PyMOL>fragment arg
Executive: object "arg" created.
PyMOL>ray
RayRenderTest: obtained 42 graphics primitives.
PyMOL>for a in range(1,10):\
PyMOL> print a\
PyMOL> print a+10
1
11
2
12
3
13
4
14
5
15
6
16
7
17
8
18
9
19
PyMOL>for a in range(11,21):\
PyMOL> print a\
PyMOL> print a+10
11
21
12
22
13
23
14
24
15
25
16
26
17
27
18
28
19
29
20
30
PyMOL>
|