File: pdb_v2to3.py

package info (click to toggle)
refmac-dictionary 5.41-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 217,852 kB
file content (269 lines) | stat: -rw-r--r-- 7,794 bytes parent folder | download | duplicates (3)
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#
#   PDB version 2 to version 3 converter. This routine also will correct DNA/RNA names
#
def usage():
    print "%s -i input -o output -a altnames " %sys.argv[0]
    print "%s --input input --output output --altnames altnames " %sys.argv[0]
    print 'input    - input pdb file: It must be defied'
    print 'output   - output pdb file: If it is not defined then it is created using input file name'
    print 'altnames - file with alternative names: If it is not defined the it is taken from %s' % os.getenv("CLIBD_MON", "")

def substring_replace(s,t,i1,j1):
    #  Replace s[i:j] by t. Take care of lengths
    i,j=i1,j1
    k=j-i
    
    if(k<0) :
        i,j=j,i
        k=-k
    if len(t) < k :
        tt = t
        for i in range(len(t),k) :
            tt = tt + " "
    elif(len(t) > k):
        tt = t[:k]
    else:
        tt=t
    s=s[:i]+tt+s[j:]
    return s

def known_pdb_corrs(allines):
    n=0
    for aa in allines:
        resname = aa[17:20].strip()
        if (aa[0:4]=="ATOM" or aa[0:4]=="HETA") :
            if(resname=="Ad") :
                resname = "DA"
            elif (resname == "Cd") :
                resname = "DC"
            elif (resname == "Td") :
                resname = "DT"
            elif (resname == "Gd") :
                resname = "DG"
            elif (resname == "Ud") :
                resname = "DU"
            elif (resname == "Ar") :
                resname == "A"
            elif (resname == "Cr") :
                resname == "C"
            elif (resname == "Tr") :
                resname = "T"
            elif (resname == "Ur") :
                resname = "U"
                allines[n] = substring_replace(aa,resname,16,19)
            n=n+1
        return allines
    #
    #    There might some more to fiddle around. They need to be put here are put in another function

def known_dnarna_corrs(alllines):
    n = 0
    for aa in allines:
        resname = aa[17:20].strip()
        if (aa[0:4]=="ATOM" or aa[0:4]=="HETA") :
            if(resname in ) :
                if( check_dnarna() == 0) :
                    substring_replace(aa)
                
def process_alts(residue,alts):
    altsthis = []
    resname = residue[1][17:20]
    print "resname %s" %resname
    n = 0
    for bb in alts:
        if(bb[0] == resname):
            n = n +1
            altsthis.append(bb)

    if(n <1) : return residue
    
    natall = 0
    nalt   = 0
    nat    = 0
    atreal1 = []
    atreal2 = []
    for ats in residue:
        natall = natall+1
        atom = ats[12:16].strip()
        print atom
        for ats_alt in altsthis:
            if atom==ats_alt[2] :
                nalt=nalt+1
                atreal1.append([ats_alt[1],ats_alt[3]])
            elif atom==ats_alt[1] :
                atreal2.append([ats_alt[1],ats_alt[3]])
                nat = nat + 1
    if (nalt == natall) :
        #
        # replace atoms
        nat = 0
        for ats in residue:
            nat = nat + 1
            atom = ats[12:4].strp()
            for ats_alt in altsthis:
                if(atom==ats_alt[2]) :
                    #
                    #  Take care: atom names may need to be written
                    #  in a fashion pdb wants
                    atom = atreal1[nat][0].strip()
                    element = atreal1[nat][1].strip()
                    if (len(element) == 1) :
                        if(len(atom) < 4): atom = " "+atom
                        element = " "+element
                        ats = substring_replace(ats,atom,12,16)
                        l=len(ats)
                        residue[nat-1] = substring_replace(ats,element,76,l)
                        break
    elif(nat==natall):
        print nat
    elif(nat !=natall) :
        print nat, natall
        print "we have a problem"
        print "At least some of the atoms in residues %s have neither alt no real atom correspondence" %resnum
        sys.exit()
    return residue

#
#   Main body of the program
#
import getopt, sys, os

#
#   Read and interpret command line options
try:
    opts, args = getopt.getopt(sys.argv[1:],"i:a:o:h",["input=","altnames=","output=","help"])
except getopt.GetoptError, err:
    # print help information and exit:
    print str(err) # will print something like "option -a not recognized"
    usage()
    sys.exit(2)
#
pdbout   = " "
altnames = " "
pdbin    = " "
for o,a in opts:
    if o in ("-i","--input"):
        pdbin=a
    elif o in ("-a", "--altnames"):
        altnames = a
    elif o in ("-o","--output"):
        pdbout = a
    elif o in ("-h","--help"):
        usage()
        sys.exit()

#
#  Make sure that necessary files exist
if(pdbin == "" or not os.path.isfile(pdbin)):
    print "Input pdb file must be defined and it must exist"
    usage()
    sys.exit()

if(pdbout == " " or len(pdbout) < 0):
    l = pdbin.find(".pdb")
    if( l > 0) :
        pdbout=pdbin[0:l]+"_v3.pdb"
    else:
        pdbout = "v3.pdb"
if altnames==" " :
   altnames = os.getenv("CLIBD_MON", "")+"pdb_alt_names.txt"

if( not os.path.isfile(altnames)) :
    print "File with altnames - %s does not exist" %altnames

#
#   Now ready to do the job

# Read the list of monomers with their alts

altatoms = []
i=0
j=0
with open(altnames,"r") as alts:
    for aaa in alts:
        aaa=aaa.strip()
        bbb =aaa.split()
        if(bbb[0] == "resname") :
            #
            #  New residue
            bsave = bbb[1]
        elif(bbb[0] == "atom") :
            #
            # read the residue further
            altatoms.append([bsave,bbb[1],bbb[3],bbb[5]])
#
#  Now read pdb file and organise it. Remove hydrogens and aniso cards

dictPDB = ["REMARK","SCALE1","CRYST1","MTRX1","MTRX2","MTRX3","ATOM","HETATM","LINK","MODRES","ORIGX","HEADER"]
allines=[]
with open(pdbin,"r") as pdbin:
    for line1 in pdbin:
        line = line1.rstrip()
        element = " "
        if  (line[0:4] == 'ATOM' or line[0:4] == 'HETA') and len(line) > 77 :
           element = line[76:78].strip()
        for aa in dictPDB:
            if line[0:6].rstrip() == aa and element != 'H' :
                #
                #  Remove charges from atom names. They should be on the element nam
                atom = line[12:16]
                ip=atom.find("+")
                if(ip < 0) : ip=atom.find("-")
                if(ip > 0) : atom = atom[0:ip]
                l=len(atom)
                if atom[l-1:l] == "," : atom = substring_replace(atom,"'",l-1,l)
                line = substring_replace(line,atom,12,16)
                allines.append(line)

allines = known_pdb_corrs(allines)


#
#   Correct known potential problems


#
#   Start processing this pdb
resnumOld ="Something Unreasonable"
residue = []

#out = open(pdbout,"w")
toout = []
nres = 0
for aa in allines:
    if aa[0:4]=="ATOM" or aa[0:6]=="HETATM" :
        resnum = aa[21:27]
        resname = aa[17:20]
        if (resnum == resnumOld) :
            nres = nres + 1
            residue.append(aa)
        else:
            if resnumOld != "Something Unreasonable" :
                #
                #   Process this residue
                residue1 = process_alts(residue,altatoms)

                for line in residue1:
                    toout.append(line)
            nres = 1
            residue = [aa]
            resnumOld = resnum
    else:
        if nres > 0:
            residue1 = process_alts(residue,altatoms)
            for line in reside1:
                print line
                toout.append(line)            
            nres = 0
        toout.append(aa)
print nres
if nres > 0:
    residue1 = process_alts(residue,altatoms)
    for line in residue1:
        print line
        toout.append(line)            
out = open(pdbout,"w")
for aa in toout:
    out.write(aa+"\n")

out.close()