forked from Pymol-Scripts/Pymol-script-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dssr_block.py
123 lines (92 loc) · 3.03 KB
/
dssr_block.py
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
'''
http://pymolwiki.org/index.php/dssr_block
(c) Thomas Holder, Schrodinger LLC
License: BSD-2
'''
from pymol import cmd, CmdException
def unquote(s):
s = str(s)
if s.rstrip()[-1:] not in ('"', "'"):
return s
return cmd.safe_eval(s)
def dssr_block(selection='all', state=-1,
block_file='face',
block_depth=0.5,
block_color='',
name='',
exe='x3dna-dssr',
quiet=1):
'''
DESCRIPTION
Create a nucleic acid base "block" cartoon with DSSR.
Requires the "x3dna-dssr" program, available from http://x3dna.org/
USAGE
dssr_block [ selection [, state [, block_file [, block_depth
[, block_color [, name [, exe ]]]]]]]
ARGUMENTS
selection = str: atom selection {default: all}
state = int: object state (0 for all states) {default: -1, current state}
block_file = face|edge|wc|equal|minor|gray: Corresponds to the --block-file
option (see DSSR manual). Values can be combined, e.g. "wc-minor".
{default: face}
block_depth = float: thickness of rectangular blocks {default: 0.5}
block_color = str: Corresponds to the --block-color option (new in DSSR
v1.5.2) {default: }
name = str: name of new CGO object {default: dssr_block##}
exe = str: path to "x3dna-dssr" executable {default: x3dna-dssr}
EXAMPLE
fetch 1ehz, async=0
as cartoon
dssr_block
set cartoon_ladder_radius, 0.1
set cartoon_ladder_color, gray
set cartoon_nucleic_acid_mode, 1
# multi-state
fetch 2n2d, async=0
dssr_block 2n2d, 0
set all_states
# custom coloring
fetch 1msy, async=0
dssr_block block_color=N red | minor 0.9 | major yellow
'''
import subprocess
import tempfile, os
state, quiet = int(state), int(quiet)
tmpfilepdb = tempfile.mktemp('.pdb')
tmpfiler3d = tempfile.mktemp('.r3d')
args = [exe,
'--block-file=' + unquote(block_file),
'--block-depth=' + unquote(block_depth),
'-i=' + tmpfilepdb,
'-o=' + tmpfiler3d,
]
if block_color:
args.append('--block-color=' + unquote(block_color))
if not name:
name = cmd.get_unused_name('dssr_block')
states = [state] if state != 0 else \
range(1, cmd.count_states(selection) + 1)
try:
for state in states:
cmd.save(tmpfilepdb, selection, state)
subprocess.check_call(args)
cmd.load(tmpfiler3d, name, max(1, state), zoom=0)
except subprocess.CalledProcessError:
raise CmdException('"' + exe + '" failed')
except OSError:
raise CmdException('Cannot execute exe="' + exe + '"')
finally:
try:
os.remove(tmpfilepdb)
os.remove(tmpfiler3d)
except OSError:
pass
cmd.extend('dssr_block', dssr_block)
# tab-completion of arguments
cmd.auto_arg[0].update({
'dssr_block' : cmd.auto_arg[0]['zoom'],
})
cmd.auto_arg[2].update({
'dssr_block' : [cmd.Shortcut(['face', 'edge', 'wc', 'equal', 'minor', 'gray']), 'block_file', ''],
})
# vi: expandtab:smarttab