-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdb_ligand.py
executable file
·69 lines (45 loc) · 1.57 KB
/
pdb_ligand.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
#!/usr/bin/env python
# Copyright 2008, Michael J. Harms
# This program is distributed under General Public License v. 3. See the file
# COPYING for a copy of the license.
__description__ = \
"""
pdb_ligand.py
Spits out a list of all ligands in a pdb.
"""
__author__ = "Michael J. Harms"
__date__ = ""
import os
BORING_LIGANDS = ["HOH","CA","SO4","IOD","NA","CL","GOL","PO4"]
def pdbLigand(pdb,skip_boring=False):
"""
"""
ligands = [l[7:10].strip() for l in pdb if l.startswith("HET ")]
ligands = dict([(l,[]) for l in ligands if l not in BORING_LIGANDS]).keys()
return ";".join(ligands)
def main():
"""
Function to call if run from command line.
"""
from helper import cmdline
cmdline.initializeParser(__description__,__date__)
cmdline.addOption(short_flag="s",
long_flag="skip_boring",
action="store_true",
default=False,
help="Ignore boring ligands (from BORING_LIGANDS list)")
file_list, options = cmdline.parseCommandLine()
out = []
for pdb_file in file_list:
f = open(pdb_file,'r')
pdb = f.readlines()
f.close()
pdb_id = pdb_file[:pdb_file.index(".pdb")]
pdb_id = os.path.split(pdb_id)[-1]
ligand_out = pdbLigand(pdb,options.skip_boring)
out.append("%s\t%s" % (pdb_id,ligand_out))
out = ["%i\t%s\n" % (i,l) for i, l in enumerate(out)]
print "".join(out)
# If run from command line...
if __name__ == "__main__":
main()