-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcheck_cutpoints.py
executable file
·47 lines (38 loc) · 1.39 KB
/
check_cutpoints.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
#!/usr/bin/python
from read_pdb import read_pdb
from make_tag import make_tag
from sys import argv
from math import sqrt
pdbs = argv[1:]
for pdb in pdbs:
CUTOFF = 1.8
( coords, pdb_lines, sequence ) = read_pdb( pdb )
print pdb
cutpoints = []
for chain in coords.keys():
for rsd in coords[ chain ].keys():
if ( rsd-1 not in coords[chain].keys() ): continue
if ( " P " in coords[ chain ][ rsd ].keys() ):
x1 = coords[ chain ][ rsd ][ " P " ]
x2 = coords[ chain ][ rsd-1 ][ " O3*" ]
dist2 = 0
for k in range(3):
d = x1[k] - x2[k]
dist2 += d*d
dist = sqrt( dist2 )
if ( dist > CUTOFF ): cutpoints.append( rsd-1 )
print "Cutpoints: ", make_tag( cutpoints )
cutpoints = []
for chain in coords.keys():
for rsd in coords[ chain ].keys():
if ( " O5*" in coords[ chain ][ rsd ].keys() ):
x1 = coords[ chain ][ rsd ][ " C5*" ]
x2 = coords[ chain ][ rsd ][ " O5*" ]
dist2 = 0
for k in range(3):
d = x1[k] - x2[k]
dist2 += d*d
dist = sqrt( dist2 )
if ( dist > CUTOFF ): cutpoints.append( rsd )
print "C5*-O5* problem: ", make_tag( cutpoints )
print