-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pymolrc
65 lines (58 loc) · 1.84 KB
/
.pymolrc
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
# General environment
# Disable echoing all commands while loading this file
feedback disable,all,actions
feedback disable,all,results
# Protein styling
hide lines
set cartoon_tube_radius, 1.2
set ribbon_width, 8
alias white, bg_color white;
alias crtn,\
hide; show cartoon; set cartoon_fancy_helices, 1; \
hide cartoon, ( resname A or resname G or resname C or resname U or resname T ); \
show sticks, ( resname A or resname G or resname C or resname U or resname T ); \
show sticks, organic; \
show sticks, inorganic; \
show lines, solvent; \
util.cnc; \
color hotpink, ( resname A or resname G or resname C or resname U or resname T )
alias shiny, set spec_power=250; set spec_refl=1.5;
alias chalky, set spec_power=-1; set spec_refl=-1;
# Raytrace parameters
set ray_trace_mode, 0
set ray_opaque_background, off
set two_sided_lighting, 1
set orthoscopic, on
set antialias, 2
set surface_quality, 2
util.cbaw
set light_count,8
set spec_count,1
set shininess, 10
set specular, 0.25
set ambient,0
set direct,0
set reflect,1.5
set ray_shadow_decay_factor, 0.1
set ray_shadow_decay_range, 2
#(0xffffff), use black for outline
# set ray_trace_color, 0x000000
set depth_cue, 1
set fog_start, 0.65
# defer_builds_mode, 0 improves performance for files with lots of states
set defer_builds_mode, 3
#Extending colors with color-blindness friendly color palette
#References:
#http://jfly.iam.u-tokyo.ac.jp/html/color_cb/#pallet
#https://personal.sron.nl/~pault/colourschemes.pdf
set_color cb_blue, [51, 34, 136]
set_color cb_tan, [221, 204, 119]
set_color cb_lightblue, [136, 204, 238]
set_color cb_green, [17, 119, 51]
set_color cb_teal, [68, 170, 153]
set_color cb_gold, [153, 153, 51]
set_color cb_salmon, [204, 102, 119]
set_color cb_red, [136, 34, 85]
set_color cb_pink, [170, 68, 153]
feedback enable,all,actions
feedback enable,all,results