1 | # Load map and model
|
---|
2 | open emdb:13065 7otq
|
---|
3 |
|
---|
4 | # Adjust map contour level and remove speckles
|
---|
5 | # Contour level of 0.15 is a good compromise because it shows that we have secondary structure resolution and also shows connected density at the H4 tail
|
---|
6 | volume #1 level 0.15
|
---|
7 | surface dust #1 size 10
|
---|
8 |
|
---|
9 | # Name orientations to make it easier to come back to them
|
---|
10 |
|
---|
11 | ## Orient in disc view and zoom in to fill camera view
|
---|
12 | turn x -90
|
---|
13 | turn z -5
|
---|
14 | view #1
|
---|
15 | view name disc
|
---|
16 |
|
---|
17 | ## Orient in dyad view
|
---|
18 | view disc
|
---|
19 | turn x 90
|
---|
20 | turn z -5
|
---|
21 | turn x -5
|
---|
22 | view name dyad
|
---|
23 |
|
---|
24 | ## Orient in gyres view
|
---|
25 | view dyad
|
---|
26 | turn x 180
|
---|
27 | turn z -5
|
---|
28 | view name gyres
|
---|
29 |
|
---|
30 | ## Orient to look at H4 tail
|
---|
31 | view gyres
|
---|
32 | turn y 95
|
---|
33 | turn x 45
|
---|
34 | turn y 30
|
---|
35 | view name H4tailInteraction
|
---|
36 | view H4tailInteraction
|
---|
37 | turn y -50
|
---|
38 | turn x -15
|
---|
39 | turn y -5
|
---|
40 | view name H4tailInteraction2
|
---|
41 |
|
---|
42 | # Name chains to make the rest easier to read
|
---|
43 | name H3 /a/e
|
---|
44 | name H4 /b/f
|
---|
45 | name H2A /c/g
|
---|
46 | name H2B /d/h
|
---|
47 | name histones /a-h
|
---|
48 | name DNA /i/j
|
---|
49 | name ALC1 /k
|
---|
50 | name NATPase /k:42-266
|
---|
51 | name CATPase /k:267-500
|
---|
52 | name H4tail /b:16-24
|
---|
53 |
|
---|
54 | # Apply color code
|
---|
55 | color H3 blue
|
---|
56 | color H4 green
|
---|
57 | color H2A yellow
|
---|
58 | color H2B red
|
---|
59 | color DNA silver
|
---|
60 | color ALC1 deeppink
|
---|
61 | color NATPase salmon
|
---|
62 |
|
---|
63 | # Find correct protein secondary structure assignments in atomic model
|
---|
64 | dssp protein
|
---|
65 |
|
---|
66 | # Adjust display of atomic model
|
---|
67 | hide atoms
|
---|
68 | hide cartoons
|
---|
69 | cartoon style protein modeHelix tube radius 2 sides 24
|
---|
70 |
|
---|
71 | # Global display options
|
---|
72 | set bgColor white
|
---|
73 | lighting soft
|
---|
74 | graphics silhouettes true
|
---|
75 |
|
---|
76 | # Movie: grey map, fade to map colored by chain assignment, fade to atomic model
|
---|
77 | view disc
|
---|
78 | view #1
|
---|
79 | movie record
|
---|
80 | wait 240
|
---|
81 | # Smooth transition from grey map to colored map
|
---|
82 | crossfade 120
|
---|
83 | color zone #1 near #2 distance 10
|
---|
84 | wait 240
|
---|
85 | # Smooth transition from map to atomic model
|
---|
86 | crossfade 120
|
---|
87 | hide #1
|
---|
88 | show cartoons
|
---|
89 | wait 240
|
---|
90 | movie stop
|
---|
91 | movie encode framerate 60 output wrong-result.mp4
|
---|