forked from haddocking/pdb-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdb_gap.py
executable file
·100 lines (77 loc) · 2.84 KB
/
pdb_gap.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
#!/usr/bin/env python
"""
Detects gaps in (protein) PDB files (sequence/distance).
usage: python pdb_gap.py <pdb file>
example: python pdb_gap.py 1CTF.pdb
Author: {0} ({1})
This program is part of the PDB tools distributed with HADDOCK
or with the HADDOCK tutorial. The utilities in this package
can be used to quickly manipulate PDB files, with the benefit
of 'piping' several different commands. This is a rewrite of old
FORTRAN77 code that was taking too much effort to compile. RIP.
"""
from __future__ import print_function
import os
import sys
__author__ = "Joao Rodrigues"
__email__ = "[email protected]"
USAGE = __doc__.format(__author__, __email__)
def check_input(args):
"""Checks whether to read from stdin/file and validates user input/options."""
if not len(args):
# Read from pipe
if not sys.stdin.isatty():
pdbfh = sys.stdin
else:
sys.stderr.write(USAGE)
sys.exit(1)
elif len(args) == 1:
# File
if not os.path.isfile(args[0]):
sys.stderr.write('File not found: ' + args[0] + '\n')
sys.stderr.write(USAGE)
sys.exit(1)
pdbfh = open(args[0], 'r')
else:
sys.stderr.write(USAGE)
sys.exit(1)
return pdbfh
def _check_structure_gaps(fhandle):
"""Enclosing logic in a function"""
_centroid = ' CA ' # respect spacing. 'CA ' != ' CA '
_distance_threshold = 4.0
def _calc_distance(i, j):
return ( (j[0]-i[0])**2 + (j[1]-i[1])**2 + (j[2]-i[2])**2 )**0.5
prev_at = (None, None, None, None, (None, None, None))
model = 0
for line in fhandle:
line = line.strip()
if line.startswith('MODEL'):
model = int(line[10:14])
elif line.startswith(('ATOM', 'HETATM')):
aname = line[12:16]
if aname != _centroid:
continue
resn = line[17:20]
resi = int(line[22:26])
chain = line[21]
x, y, z = float(line[30:38]), \
float(line[38:46]), \
float(line[46:54])
at_uid = (model, chain, resi, resn, aname, (x,y,z))
if prev_at[0] == at_uid[0] and prev_at[1] == at_uid[1]:
d = _calc_distance(at_uid[5], prev_at[5])
if d > _distance_threshold:
print("{0[1]}:{0[3]}{0[2]} < {2:7.2f}A > {1[1]}:{1[3]}{1[2]}".format(prev_at, at_uid, d))
elif prev_at[2] + 1 != at_uid[2]:
print("{0[1]}:{0[3]}{0[2]} < Seq. Gap > {1[1]}:{1[3]}{1[2]}".format(prev_at, at_uid))
prev_at = at_uid
if __name__ == '__main__':
# Check Input
pdbfh = check_input(sys.argv[1:])
# Do the job
_check_structure_gaps(pdbfh)
# last line of the script
# We can close it even if it is sys.stdin
pdbfh.close()
sys.exit(0)