-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpdb2filter_residues.py
116 lines (85 loc) · 2.72 KB
/
pdb2filter_residues.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
################################################################################
#
# MRC FGU Computational Genomics Group
#
# $Id$
#
# Copyright (C) 2009 Andreas Heger
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#################################################################################
'''
pdb2filter_residues.py -
======================================================
:Author: Andreas Heger
:Release: $Id$
:Date: |today|
:Tags: Python
Purpose
-------
.. todo::
describe purpose of the script.
Usage
-----
Example::
python pdb2filter_residues.py --help
Type::
python pdb2filter_residues.py --help
for command line help.
Documentation
-------------
Code
----
'''
USAGE = """filter out a list of residues from a
pdb file.
"""
import sys, re, os, string, getopt
import alignlib
param_master = 0
param_format = None
param_multiple_alignment = None
GAPCHARS=(".", "-")
if __name__ == '__main__':
try:
optlist, args = getopt.getopt(sys.argv[1:],
"V:m:f:",
["Verbose=", "master=",
"format="])
except getopt.error, msg:
print USAGE, msg
sys.exit(2)
for o,a in optlist:
if o in ("-f", "--format"):
param_format = a
elif o in ("-i", "--iterations"):
param_max_iterations = string.atoi(a)
if len(args) != 1:
print "please specify file with residue number."
print USAGE
sys.exit(1)
residues = map(lambda x: string.split(x[:-1], "\t")[0], filter(lambda x: not re.match("#",x), open(args[0], "r").readlines()))
residues_map = {}
for r in residues:
residues_map[r] = 1
for line in sys.stdin:
if line[:6] not in ("ATOM ", "HETATM"): continue
chain = line[21]
number = string.strip(line[22:26])
aa = line[17:20]
atom = string.strip(line[13:17])
if not residues_map.has_key( number ):
continue
print line[:-1]