-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprotein_new.py
More file actions
772 lines (670 loc) · 38.9 KB
/
protein_new.py
File metadata and controls
772 lines (670 loc) · 38.9 KB
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
from __future__ import division
import Bio.PDB
from collections import defaultdict
import os.path, gzip
from geneticCode import *
import itertools, numpy, string, subprocess, re
import math as math
import residueDepth as ResDepth
from NACCESS import *
from pdbseq import *
#-------------------------------------------------------------------------------
class Protein:
#-------------------------------------------------------------------------------
def __init__(self, id, aa, ds_dir,criterion):
print 'PDB:', id,
self.out_dir = ds_dir
self.pdb_ID = id
self.pdb_AA = aa # the fasta sequence
self.pdb_structure_AA = pdbres('') # the structure seq aligned to the fasta seq
self.ccds_match = []
self.hasMatch = False
self.crit=criterion
self.Non_Stand_pos=defaultdict(list) # recording where non-standard AA or un-classified cases like 'H_PTR' is
self.Strange_res=[]
self.Excluded_res=[]
self.parsePDBfile()
self.special = False
#-------------------------------------------------------------------------------
def printFastaSequences(self):
with gzip.open(self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '_ccds.fasta.gz', 'w') as f_fasta:
for a in self.ccds_match:
f_fasta.write('>' + a.ccds_ID + '_protein\n')
f_fasta.write(a.ccds_AA + '\n')
f_fasta.write('>' + a.ccds_ID + '_dna\n')
f_fasta.write(a.ccds_DNA + '\n')
#-------------------------------------------------------------------------------
def printPDBfasta2StructureAlignment(self):
with gzip.open(self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '_fasta2struct.fasta.gz', 'w') as f_fasta:
f_fasta.write('>' + self.pdb_ID + '_fasta\n')
f_fasta.write(self.pdb_AA.seq + '\n')
f_fasta.write('>' + self.pdb_ID + '_pdb_structure_residues\n')
f_fasta.write(self.pdb_structure_AA.seq + '\n')
#-------------------------------------------------------------------------------
def printCCDS2PDBAlignments(self):
with gzip.open(self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '_best_ungapped.fasta.gz', 'w') as f_fasta:
ccds = self.ccds_match[0]
tmpstr = ccds.ccds_AA[:ccds.ccds_local_alignment_start] + string.replace(ccds.ccds_alignedAA[:ccds.ungapped_segment_start], '-', '')
idx = 3*len(tmpstr)
offset = str(idx + 1)
f_fasta.write('>' + ccds.ccds_ID + '_to_' + self.pdb_ID + '_fasta_longest_ungapped_segment' + '_Starting_DNA_CCDS_pos_' + offset + '\n')
f_fasta.write(ccds.ccds_DNA[idx:idx+3*ccds.ungapped_segment_length] + '\n')
offset = str(ccds.ungapped_segment_start + ccds.ccds_local_alignment_start + 1)
f_fasta.write('>' + ccds.ccds_ID + '_to_' + self.pdb_ID + '_fasta_longest_ungapped_segment' + '_Starting_CCDS_pos_' + offset + '\n')
f_fasta.write(ccds.ccds_alignedAA[ccds.ungapped_segment_start:ccds.ungapped_segment_start+ccds.ungapped_segment_length] + '\n')
i1 = string.find(self.pdb_AA.seq, ccds.pdb_alignedAA.seq[ccds.ungapped_segment_start:ccds.ungapped_segment_start+ccds.ungapped_segment_length])
i2 = i1 + ccds.ungapped_segment_length
f_fasta.write('>' + self.pdb_ID + '_to_' + ccds.ccds_ID + '_longest_ungapped_segment' + '_Starting_aligned_PDB_struct_pos_' + str(i1 + 1) + '\n')
f_fasta.write(self.pdb_structure_AA.seq[i1:i2] + '\n')
#-------------------------------------------------------------------------------
def printLocalCCDSalignments(self):
with gzip.open(self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '_fasta2CCDS.fasta.gz', 'w') as f_fasta:
for ccds in self.ccds_match:
offset = str(ccds.ccds_local_alignment_start + 1)
f_fasta.write('>' + ccds.ccds_ID + '_locally_aligned_to_' + self.pdb_ID + '_fasta' + '_starting_CCDS_pos_' + offset + '\n')
f_fasta.write(ccds.ccds_alignedAA + '\n')
offset = str(ccds.pdb_local_alignment_start + 1)
f_fasta.write('>' + self.pdb_ID + '_fasta_locally_aligned_to_' + ccds.ccds_ID + '_starting_fasta_pos_' + offset + '\n')
f_fasta.write(ccds.pdb_alignedAA.seq + '\n')
#-------------------------------------------------------------------------------
def printDMat(self):
ccds = self.ccds_match[0]
r_from = string.find(self.pdb_AA.seq, ccds.pdb_alignedAA.seq[ccds.ungapped_segment_start:ccds.ungapped_segment_start+ccds.ungapped_segment_length])
r_to = r_from + ccds.ungapped_segment_length
self.printSubDMatrix(r_from, r_to)
#-------------------------------------------------------------------------------
def printMismatches(self):
ccds = self.ccds_match[0]
with gzip.open(self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '.mm.gz', 'w') as f:
start = ccds.ungapped_segment_start
end = start + ccds.ungapped_segment_length
ctr = 0
for k, v in sorted(ccds.mismatch_or_gap.items()):
if k >= start and k < end:
ctr = ctr + 1
f.write(str(ctr) + ' ' + self.pdb_ID + ' ' + ccds.ccds_ID + '\n')
for k, v in sorted(ccds.mismatch_or_gap.items()):
if k >= start and k < end:
f.write(str(k - ccds.ungapped_segment_start + 1) + '\t')
for i in range(len(v)-1):
if isinstance(v[i],str):
f.write(v[i] + '\t')
elif isinstance(v[i],pdbseq):
f.write(v[i].seq + '\t')
else:
f.write(v[i] + '\t')
if isinstance(v[i+1],str):
f.write(v[i+1] + '\n')
elif isinstance(v[i+1],pdbseq):
f.write(v[i+1].seq + '\n')
else:
f.write(v[i+1] + '\n')
#-------------------------------------------------------------------------------
def printSubDMatrix(self, r_from, r_to):
assert(r_from <= r_to)
dmat = self.calcDistMatrix()
# Test version
# with gzip.open(self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '_' + 'v2.pw.gz', 'w') as f:
# for i in range(r_from, r_to):
# line = [ dmat[i, j] for j in range(r_from, r_to) ]
# f.writelines([ "%8.4f\t" % i for i in line ])
# f.write('\n')
# Version for Jeff
ccds = self.ccds_match[0] #alright, no loops here @Xiang
tmpstr = ccds.ccds_AA[:ccds.ccds_local_alignment_start] + string.replace(ccds.ccds_alignedAA[:ccds.ungapped_segment_start], '-', '')
idx = 3*len(tmpstr) # Maybe should record this location in the future, it's used several times @Xiang
tmpstr = ccds.ccds_DNA[idx:idx+3*ccds.ungapped_segment_length]
tmpstr2 = ccds.pdb_aligned_structure_AA[ccds.ungapped_segment_start:ccds.ungapped_segment_start+ccds.ungapped_segment_length]
nres = len(string.replace(tmpstr2.seq, '-', ''))
with gzip.open(self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '.pw.gz', 'w') as f:
f.write(self.pdb_ID + ' ' + str(nres) + '\n')
idx1 = 1
for i in range(r_from, r_to-1): # not that necessary to use -1 for the loop here @Xiang range(r_to, r_to)=[], anyhow, it's good habit @Xiang
idx2 = idx1+1
for j in range(i+1, r_to):
if not math.isnan(dmat[i, j]):
f.write(str(idx1) + '\t' + str(idx2) + '\t' + tmpstr[(idx1-1)*3:(idx1-1)*3+3] + '\t')
f.write(tmpstr[(idx2-1)*3:(idx2-1)*3+3] + '\t' + str(dmat[i, j]) + '\t' + tmpstr2[idx1-1].seq + '\t' + tmpstr2[idx2-1].seq +'\t' + str(idx1+r_from) + '\t' + str(idx2+r_from) +'\n')
idx2 = idx2+1
idx1 = idx1+1
#-------------------------------------------------------------------------------
def printSeqFile(self):
with gzip.open(self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '.seq.gz', 'w') as f:
ccds = self.ccds_match[0]
f.write(self.pdb_ID + ' ' + str(ccds.ungapped_segment_length) + '\n')
tmpstr = ccds.ccds_AA[:ccds.ccds_local_alignment_start] + string.replace(ccds.ccds_alignedAA[:ccds.ungapped_segment_start], '-', '')
idx = 3*len(tmpstr)
f.write(ccds.ccds_DNA[idx:idx+3*ccds.ungapped_segment_length] + '\n')
f.write(ccds.ccds_alignedAA[ccds.ungapped_segment_start:ccds.ungapped_segment_start+ccds.ungapped_segment_length] + '\n')
i1 = string.find(self.pdb_AA.seq, ccds.pdb_alignedAA.seq[ccds.ungapped_segment_start:ccds.ungapped_segment_start+ccds.ungapped_segment_length])
i2 = i1 + ccds.ungapped_segment_length
f.write(self.pdb_structure_AA.seq[i1:i2] + '\n')
#-------------------------------------------------------------------------------
def printSolvAcc(self):
with gzip.open(self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '.sa.gz', 'w') as f:
ccds = self.ccds_match[0]
pdb_file = self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '.pdb'
handle = gzip.open(pdb_file + '.gz', "r")
structure = Bio.PDB.PDBParser().get_structure(self.pdb_ID, handle)
model = structure[0]
chain_list = [ a.get_id() for a in model ]
chain = model[chain_list[0]]
rd = ResDepth.ResidueDepth(chain, pdb_file + '.gz')
if rd.terminate:
print '===========Warning: MSMS or pdb_to_xyzr doesnot work'
return False
# CCDS string up until the beginning of the ungapped segment without gaps
tmpstr = ccds.ccds_AA[:ccds.ccds_local_alignment_start] + string.replace(ccds.ccds_alignedAA[:ccds.ungapped_segment_start], '-', '')
# First codon of ungapped sequence in DNA sequence
idx = 3*len(tmpstr)
# The DNA sequence for the ungapped segment
strng = ccds.ccds_DNA[idx:idx+3*ccds.ungapped_segment_length]
# Start of ungapped segment in the PDB fasta sequence
r_from = self.pdb_AA.find( ccds.pdb_alignedAA[ccds.ungapped_segment_start:ccds.ungapped_segment_start+ccds.ungapped_segment_length])
# End of ungapped segment in the PDB fasta sequence
r_to = r_from + ccds.ungapped_segment_length
# The structure sequence is aligned to the fasta sequence, may have gaps in the ungapped segment
nres = len(self.pdb_structure_AA[r_from:r_to]) - self.pdb_structure_AA[r_from:r_to].count('-')
f.write(self.pdb_ID + ' ' + str(nres) + '\n')
idx = 0
#Xiang Version start
nchck=0
sortloc_list = self.pdb_structure_AA.loc_list[:]
for item in rd:
resseq=item[0].get_id()[1]
index_list = self.returnindexes(sortloc_list,resseq)
if index_list:
idx = index_list[0]
sortloc_list[idx] = None
#assert (len(index_list)==1)
#it should be one to one but like pdbID = 1CS8, resseq 1p to 96p then 1 to 749. It's converted to 1-96 followed by 1-749 in Bio.PDB
else:
continue
if item[0].get_id()[0][0:2]=='H_' and item[0].get_id()[0]!='H_W': # exclude the non standard MSE case for now
if idx<r_to and idx >= r_from and self.pdb_structure_AA[idx] != '-':
nres = nres-1
else:
print 'non-standard AA happens at position ',idx, 'but out of comparison region. resseq position saved for nAccess analysis'
print
nonStandID=item[0].get_id()[0]
self.Non_Stand_pos[nonStandID].append(resseq)
self.Excluded_res.append(resseq)
self.special = True
if idx<r_to and idx>=r_from:
if not item[0].has_id('CA'):
if self.pdb_structure_AA[idx] != '-':
nres = nres-1
self.Strange_res.append(resseq)
self.special = True
#self.Excluded_res.append(resseq) only store Nonstandard for now
if item[0].has_id('CA') and item[0].get_id()[0] == ' ': # No Het
f.write(str(idx+1) + '\t' + strng[(idx-r_from)*3:(idx-r_from)*3+3] + '\t' + str(item[1][0]) + '\t' + str(item[1][1]) + '\t'
+ str(self.pdb_structure_AA.seq[idx]) + '\t' + str(item[0].get_resname()) + '\t' + str(resseq) + '\n')
nchck = nchck + 1
#End of Xiang Version
self.Excluded_res = list(set(self.Excluded_res))
self.Strange_res = list(set(self.Strange_res))
if nchck != nres:
with gzip.open(self.out_dir + 'ErrorPDBList.solerr.gz', 'a') as f2:
print '===============ResidueDepth Checking Issue for PDB ID:', self.pdb_ID
print 'nchck = ', nchck, 'nres = ', nres
f2. write(str(self.pdb_ID) + '\t' + str(nchck) + '\t' + str(nres) + '\n')
else:
print
#assert(nchck == nres)
#-------------------------------------------------------------------------------
def printnAccess(self):
with gzip.open(self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '.sanac.gz', 'w') as f:
ccds = self.ccds_match[0]
pdb_file = self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '.pdb'
handle = gzip.open(pdb_file + '.gz', "r")
structure = Bio.PDB.PDBParser().get_structure(self.pdb_ID, handle)
model = structure[0]
chain_list = [ a.get_id() for a in model ]
chain = model[chain_list[0]]
pdb_file_dir=self.out_dir + self.pdb_ID + '/'
naccess_dir='/Users/xji3/nAccess/Naccess/naccess'
rd = NACCESS(chain, pdb_file_dir, self.pdb_ID, naccess_dir )
# CCDS string up until the beginning of the ungapped segment without gaps
tmpstr = ccds.ccds_AA[:ccds.ccds_local_alignment_start] + string.replace(ccds.ccds_alignedAA[:ccds.ungapped_segment_start], '-', '')
# First codon of ungapped sequence in DNA sequence
idx = 3*len(tmpstr)
# The DNA sequence for the ungapped segment
strng = ccds.ccds_DNA[idx:idx+3*ccds.ungapped_segment_length]
# Start of ungapped segment in the PDB fasta sequence
r_from = self.pdb_AA.find( ccds.pdb_alignedAA[ccds.ungapped_segment_start:ccds.ungapped_segment_start+ccds.ungapped_segment_length])
# End of ungapped segment in the PDB fasta sequence
r_to = r_from + ccds.ungapped_segment_length
# The structure sequence is aligned to the fasta sequence, may have gaps in the ungapped segment
nres = len(self.pdb_structure_AA[r_from:r_to]) - self.pdb_structure_AA[r_from:r_to].count('-')
f.write(self.pdb_ID + ' ' + str(nres) + '\n')
idx = 0
#Xiang Version start
nchck=0
nres = nres - len(list(set([i for i in self.Excluded_res if i>=r_from and i<r_to])))
sortloc_list = self.pdb_structure_AA.loc_list[:]
for item in rd:
resseq=item[0].get_id()[1]
index_list = self.returnindexes(sortloc_list,resseq)
if index_list:
idx = index_list[0]
sortloc_list[idx] = None
#assert (len(index_list)==1)
#it should be one to one but like pdbID = 1CS8, resseq 1p to 96p then 1 to 749. It's converted to 1-96 followed by 1-749 in Bio.PDB
else:
continue
if idx<r_to and idx>=r_from:
if item[0].has_id('CA') and item[0].get_id()[0] == ' ': # No Het
f.write(str(idx+1) + '\t' + strng[(idx-r_from)*3:(idx-r_from)*3+3] + '\t' + str(item[1]['all_atoms_rel']) + '\t'
+ str(item[1]['all_atoms_abs']) + '\t' + str(self.pdb_structure_AA.seq[idx]) + '\t' + str(item[0].get_resname()) + '\t' + str(resseq) + '\n')
nchck = nchck + 1
if nchck != nres:
with gzip.open(self.out_dir + 'ErrorPDBList.nacerr.gz', 'a') as f2:
print '===============nAccess Checking Issue for PDB ID:', self.pdb_ID
print 'nchck = ', nchck, 'nres = ', nres
f2. write(str(self.pdb_ID) + '\t' + str(nchck) + '\t' + str(nres) + '\n')
else:
print
#End of Xiang Version
#assert(nchck == nres)
#-------------------------------------------------------------------------------
def printExcludedRes(self):
if self.special:
ccds = self.ccds_match[0]
# CCDS string up until the beginning of the ungapped segment without gaps
tmpstr = ccds.ccds_AA[:ccds.ccds_local_alignment_start] + string.replace(ccds.ccds_alignedAA[:ccds.ungapped_segment_start], '-', '')
# First codon of ungapped sequence in DNA sequence
idx = 3*len(tmpstr)
# The DNA sequence for the ungapped segment
strng = ccds.ccds_DNA[idx:idx+3*ccds.ungapped_segment_length]
# Start of ungapped segment in the PDB fasta sequence
r_from = string.find(self.pdb_AA, ccds.pdb_alignedAA[ccds.ungapped_segment_start:ccds.ungapped_segment_start+ccds.ungapped_segment_length])
# End of ungapped segment in the PDB fasta sequence
r_to = r_from + ccds.ungapped_segment_length
idx=0
with gzip.open(self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '.er.gz', 'w') as f:
if self.Non_Stand_pos:
print '=============Warning: non-standard Amino Acid occuring'
print 'pdb ID: ', self.pdb_ID
for nonStand in self.Non_Stand_pos:
print 'non-standard AA: ', nonStand, 'occurred at resseq positions: ', self.Non_Stand_pos[nonStand]
for resseq in self.Non_Stand_pos[nonStand]:
index_list = self.returnindexes(self.pdb_structure_AA,resseq)
idx = index_list[0]
assert (len(index_list)==1)
f.write(str(idx+1) + '\t' + strng[(idx-r_from)*3:(idx-r_from)*3+3] + '\t' + nonStand + '\t' + str(self.pdb_structure_AA.seq[idx]) + '\n')
if self.Strange_res:
print '=============Warning: non-CA Detected'
print 'pdb ID: ', self.pdb_ID, ' at resseq position: ', self.Strange_res
for resseq in self.Strange_res:
index_list = self.returnindexes(self.pdb_structure_AA,resseq)
idx = index_list[0]
assert (len(index_list)==1)
f.write(str(idx+1) + '\t' + strng[(idx-r_from)*3:(idx-r_from)*3+3] + '\t' + 'non-CA' + '\t' + str(self.pdb_structure_AA.seq[idx]) + '\n')
#-------------------------------------------------------------------------------
def printInfo(self):
self.printFastaSequences()
self.printPDBfasta2StructureAlignment()
self.printCCDS2PDBAlignments()
self.printLocalCCDSalignments()
self.printDMat()
self.printMismatches()
self.printSeqFile()
# self.printSolvAcc()
# self.printExcludedRes()
# self.printnAccess()
#-------------------------------------------------------------------------------
def returnindexes(self,a,b): # a is pdbseq instance @Xiang
if isinstance(a,pdbseq):
return [i for i,x in enumerate(a.loc_list) if x==b]
elif isinstance(a,list):
return [i for i,x in enumerate(a) if x==b]
else:
print 'Please Define returnindexes function in protein class'
return None
#-------------------------------------------------------------------------------
def alignCCDSlocal(self):
for pdb2ccds in self.ccds_match: # here pdb2ccds is class PDB_CCDS, not the dict in class data class @Xiang
out = self.alignLocalWater(pdb2ccds.ccds_AA) # use water for local alignment
iter = out.__iter__()
# Parse water's output
for line in iter:
if line.strip() and line.split() and line.split()[0] == 'asis':
break
aligned_subseq1 = line.split()
pdb2ccds.pdb_local_alignment_start = int(aligned_subseq1[1]) - 1
s1 = pdb2ccds.pdb_alignedAA = pdbseq(aligned_subseq1[2]) # PDB sequence
iter.next() # skip the vertical bars
aligned_subseq2 = iter.next().split()
assert(len(aligned_subseq1[2]) == len(aligned_subseq2[2]))
pdb2ccds.ccds_local_alignment_start = int(aligned_subseq2[1]) - 1
s2 = pdb2ccds.ccds_alignedAA = aligned_subseq2[2] # CCDS sequence
algnmt_length = pdb2ccds.local_alignment_length = len(aligned_subseq2[2])
# Keep track of the gaps also in the actual structure sequence (not just the fasta of the structure)
s3 = self.pdb_structure_AA[pdb2ccds.pdb_local_alignment_start:]
gaps = [ i.start() for i in re.finditer('-', s1.seq) ] # record all gap positions in s1 @Xiang
#string.replace(s3, '-', '') #comment for now @Xiang
for i in gaps:
s3 = self.insertInString(i, s3, '-')
s3 = pdb2ccds.pdb_aligned_structure_AA = s3[:algnmt_length] # PDB file sequence
# Find longest ungapped segment, mismatches, gaps, percent identity as compared to fasta seq
seg_len = longest_seg_len = mtch_ctr = ccds_gap_ctr = 0
for idx in range(algnmt_length):
p_res = s1[idx]
c_res = s2[idx]
if p_res == '-' or c_res == '-':
if seg_len > longest_seg_len:
longest_seg_len = pdb2ccds.ungapped_segment_length = seg_len
pdb2ccds.percent_identity = 100 * mtch_ctr/longest_seg_len
# if we hit a gap we don't need to add one to get the start pos
pdb2ccds.ungapped_segment_start = idx - seg_len
# Gap => reset counters
mtch_ctr = seg_len = 0
elif p_res == c_res:
seg_len += 1
mtch_ctr += 1
else: # mismatch
seg_len += 1
if seg_len > longest_seg_len:
longest_seg_len = pdb2ccds.ungapped_segment_length = seg_len
pdb2ccds.ungapped_segment_start = 1 + idx - seg_len
pdb2ccds.percent_identity = 100 * mtch_ctr/longest_seg_len
# In longest ungapped segment find mismatches, gaps, percent identity as compared to pdb file seq
ccds_gap_ctr = 0
for idx in range(algnmt_length):
p_res = s3[idx]
c_res = s2[idx]
tmp = 3*(pdb2ccds.ccds_local_alignment_start + idx - ccds_gap_ctr)
codon = pdb2ccds.ccds_DNA[tmp:tmp+3]
if p_res == '-' or c_res == '-':
if c_res == '-':
ccds_gap_ctr = ccds_gap_ctr+1
# { aligned AA sequences offset : [ pdb_aa_res, ccds_aa_res, ccds_dna_triplet, triplet transl. ] }
pdb2ccds.mismatch_or_gap[idx] = [ p_res.seq, '-', '---', '-' ]
else:
pdb2ccds.mismatch_or_gap[idx] = [ '-', c_res, codon, universalCode[codon] ]
elif p_res != c_res or c_res != universalCode[codon]: # mismatch or translation exception
pdb2ccds.mismatch_or_gap[idx] = [ p_res.seq, c_res, codon, universalCode[codon] ]
# Sort the ccds alignments by longest ungapped segment length & percent identity
# Sorting algorithm is stable; order of the first sort is preserved if second criterium is equal
self.ccds_match = sorted(self.ccds_match, key=lambda prot: prot.percent_identity, reverse=True)
self.ccds_match = sorted(self.ccds_match, key=lambda prot: prot.ungapped_segment_length, reverse=True)
# test in XiangDraft3.py @Xiang
#-------------------------------------------------------------------------------
def insertInString(self, idx, seq, insert):
return seq[:idx] + pdbseq(insert) + seq[idx:]
#-------------------------------------------------------------------------------
def alignLocalWater(self, ccds_AA):
water_localfile_dir='/Users/xji3/emBoss/EMBOSS-6.6.0/emboss'
if os.path.isfile(water_localfile_dir+'/water'):
water = water_localfile_dir+'/water'
else:
water = 'water'
return subprocess.check_output([
water,
'-stdout',
'-auto',
'-awidth3=100000',
'-asequence=asis:' + self.pdb_AA.seq,
'-bsequence=asis:' + ccds_AA
]).split('\n')
#-------------------------------------------------------------------------------
def parsePDBfile(self):
pdb_file = self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '.pdb'
handle = gzip.open(pdb_file + '.gz', "r")
structure = Bio.PDB.PDBParser().get_structure(self.pdb_ID, handle)
model = structure[0]
chain_list = [ a.get_id() for a in model ]
print 'Using chain:', chain_list[0]
chain = model[chain_list[0]]
if self.crit=='C-N':
ppb = Bio.PDB.PPBuilder()
print 'Using C-N distance criterion'
# pdBuilder() uses C-N distance criterion
elif self.crit=='Ca-Ca':
ppb = Bio.PDB.CaPPBuilder()
print 'Using Ca-Ca distance criterion'
# CaPPBuilder() uses Ca-Ca distance criterion
else:
ppb = Bio.PDB.CaPPBuilder()
print 'Using Ca-Ca distance criterion'
# CaPPBuilder() uses Ca-Ca distance criterion
# Use Ca-Ca criterion by default
# Include non-standard residues
# more info. in biopdb_faq.pdf, page 11 @Xiang
tmpstructure = [ pp for pp in ppb.build_peptides(chain, aa_only=False) ] # used for tracking position
tmploc = []
tmp = [ str(pp.get_sequence()) for pp in ppb.build_peptides(chain, aa_only=False) ]
assert(not self.pdb_structure_AA)
self.pdb_structure_AA = pdbseq('-' * len(self.pdb_AA)) #assign all gaps
edges = [None] * len(tmpstructure)
multiple = []
i = 0
for bb in tmpstructure:
# Only consider fragments that occur only once
# This doesn't cause a lot of loss since only very short (~2 res) fragments occur more than once
a = str(bb.get_sequence())
loclist = [c.get_id()[1] for c in bb]
tmploc.append(loclist)
n = self.pdb_AA.count(a)
if(n == 1):
idx = string.find(self.pdb_AA, a) # return the first element in a's notion in pdb_AA, could be 0 @Xiang
self.pdb_structure_AA = self.pdb_structure_AA[:idx] + pdbseq(a,loclist) + self.pdb_structure_AA[idx+len(a):]
edges[i] = [idx, idx+len(a)]
elif n > 1 :
multiple.append(i)
else:
print 'There is no match of this fragment in the pdb AA sequence', a # May need more operation here @Xiang
i = i+1
# Give fragments we couldn't place unambiguously before a second try
for i in multiple:
b = e = -1
if i == 0 and edges[i+1]:
b = 0
e = edges[i+1][0]
elif i == (len(tmp)-1) and edges[i-1]:
b = edges[i-1][1]
e = len(tmp)-1
elif edges[i-1] and edges[i+1]:
b = edges[i-1][1]
e = edges[i+1][0]
else:
print 'I don\'t know where to place this fragment. It appears >= 2x in the structure.'
print 'It will be ignored in the distance matrix:', tmp[i]
continue
if self.pdb_AA[b:e].count(tmp[i]) == 1:
idx = string.find(self.pdb_AA[b:e], tmp[i])
self.pdb_structure_AA = self.pdb_structure_AA[:b+idx] + pdbseq(tmp[i],tmploc[i]) + self.pdb_structure_AA[b+idx+len(tmp[i]):]
else:
print 'I don\'t know where to place this fragment. It appears >= 2x in the structure.',
print 'It will be ignored in the distance matrix:', tmp[i]
#-------------------------------------------------------------------------------
def calcDistMatrix(self):
pdb_file = self.out_dir + self.pdb_ID + '/' + self.pdb_ID + '.pdb'
handle = gzip.open(pdb_file + '.gz', "r")
structure = Bio.PDB.PDBParser().get_structure(self.pdb_ID, handle)
model = structure[0]
chain_list = [ a.get_id() for a in model ]
chain = model[chain_list[0]]
if self.crit=='C-N':
ppb = Bio.PDB.PPBuilder()
# Include non-standard residues
print 'Using C-N distance criterion for DistMatrix Calculation'
elif self.crit=='Ca-Ca':
ppb = Bio.PDB.CaPPBuilder()
print 'Using Ca-Ca distance criterion for DistMatrix Calculation'
# CaPPBuilder() uses Ca-Ca distance criterion
#@Xiang
else:
ppb = Bio.PDB.CaPPBuilder()
print 'Using Ca-Ca distance criterion for DistMatrix Calculation'
# Use Ca-Ca criterion by default
tmp = [ str(pp.get_sequence()) for pp in ppb.build_peptides(chain, aa_only=False) ]
# Join the lists to get nRes
# structure_residues = [None] * len(list(itertools.chain(*tmp)))
structure_residues = [r for r in chain if r.has_id('CA') and r.get_id()[0] == ' ' ]
#############################################################################
ccds = self.ccds_match[0]
# CCDS string up until the beginning of the ungapped segment without gaps
tmpstr = ccds.ccds_AA[:ccds.ccds_local_alignment_start] + string.replace(ccds.ccds_alignedAA[:ccds.ungapped_segment_start], '-', '')
# First codon of ungapped sequence in DNA sequence
idx = 3*len(tmpstr)
# The DNA sequence for the ungapped segment
strng = ccds.ccds_DNA[idx:idx+3*ccds.ungapped_segment_length]
# Start of ungapped segment in the PDB fasta sequence
r_from = self.pdb_AA.find( ccds.pdb_alignedAA[ccds.ungapped_segment_start:ccds.ungapped_segment_start+ccds.ungapped_segment_length])
# End of ungapped segment in the PDB fasta sequence
r_to = r_from + ccds.ungapped_segment_length
# The structure sequence is aligned to the fasta sequence, may have gaps in the ungapped segment
nres = len(self.pdb_structure_AA[r_from:r_to]) - self.pdb_structure_AA[r_from:r_to].count('-')
#############################################################################
## idx = 0
## for r in chain: #.get_residues() seems like r=residues in chain, which doesn't need that function @Xiang
## if r.has_id('CA') and r.get_id()[0] == ' ': # No Het
## structure_residues[idx] = r
## structure_resseq[idx] = r.get_id()[1]
## idx = idx + 1
dmat = numpy.empty((len(self.pdb_AA), len(self.pdb_AA)), numpy.float)
dmat[:] = numpy.NAN
nres = len(structure_residues)
r_idx1 = 0
sortloc_list = self.pdb_structure_AA.loc_list[:]
for i in range(len(structure_residues)):
resseq_i = structure_residues[i].get_id()[1]
i_idx_list = self.returnindexes(sortloc_list,resseq_i)
if i_idx_list:
i_dmat = i_idx_list[0]
sortloc_list[i_dmat] = None
else:
continue
#i_dmat = structure_residues[i].get_id()[1]-structure_residues[0].get_id()[1]
if i_dmat >= r_from and i_dmat < r_to:
dmat[i_dmat, i_dmat] = 0.0
j_sortloc_list = sortloc_list[:]
else:
continue
for j in range(i+1,len(structure_residues)):
resseq_j = structure_residues[j].get_id()[1]
j_idx_list = self.returnindexes(j_sortloc_list,resseq_j)
if j_idx_list:
j_dmat = j_idx_list[0]
#j_dmat = structure_residues[j].get_id()[1]-structure_residues[0].get_id()[1]
dmat[i_dmat, j_dmat] = self.calcCAdist(structure_residues[i],structure_residues[j])
dmat[j_dmat, i_dmat] = dmat[i_dmat, j_dmat]
j_sortloc_list[j_dmat] = None
else:
continue
return dmat
## for i in range(tot-1): #why -1 range(3)=[0,1,2] Stop Codon? @Xiang
## if self.pdb_structure_AA[i] != '-' and structure_residues[r_idx1]:
##
## dmat[i, i] = 0.0
## r1 = structure_residues[r_idx1]
## r_idx1 = r_idx1 + 1
## else:
## continue
## r_idx2 = r_idx1
## for j in range(i+1, tot):
## if self.pdb_structure_AA[j] != '-' and structure_residues[r_idx2]:
## r2 = structure_residues[r_idx2]
## r_idx2 = r_idx2 + 1
## else:
## continue
## if (r1.has_id('CA') and r2.has_id('CA')):
## dmat[i, j] = self.calcCAdist(r1, r2)
## dmat[j, i] = dmat[i, j]
## return dmat
#
### Remember to delete
## #Xiang Version start
## nchck=0
## nres = nres - len(list(set([i for i in self.Excluded_res if i>=r_from and i<r_to])))
## sortloc_list = self.pdb_structure_AA.loc_list[:]
## for item in rd:
## resseq=item[0].get_id()[1]
##
## index_list = self.returnindexes(sortloc_list,resseq)
## if index_list:
## idx = index_list[0]
## sortloc_list[idx] = None
## #assert (len(index_list)==1)
## #it should be one to one but like pdbID = 1CS8, resseq 1p to 96p then 1 to 749. It's converted to 1-96 followed by 1-749 in Bio.PDB
## else:
## continue
##
##
## if idx<r_to and idx>=r_from:
##
## if item[0].has_id('CA') and item[0].get_id()[0] == ' ': # No Het
## f.write(str(idx+1) + '\t' + strng[(idx-r_from)*3:(idx-r_from)*3+3] + '\t' + str(item[1]['all_atoms_rel']) + '\t'
## + str(item[1]['all_atoms_abs']) + '\t' + str(self.pdb_structure_AA.seq[idx]) + '\t' + str(item[0].get_resname()) + '\t' + str(resseq) + '\n')
## nchck = nchck + 1
## if nchck != nres:
## with gzip.open(self.out_dir + 'ErrorPDBList.nacerr.gz', 'a') as f2:
## print '===============nAccess Checking Issue for PDB ID:', self.pdb_ID
## print 'nchck = ', nchck, 'nres = ', nres
## f2. write(str(self.pdb_ID) + '\t' + str(nchck) + '\t' + str(nres) + '\n')
## else:
## print
##
## #End of Xiang Version
## #assert(nchck == nres)
### Remember to delete
#-------------------------------------------------------------------------------
def printDMatrix(self):
tot = len(self.pdb_AA)
for i in range(tot):
for j in range(tot):
print "%6.3f" % self.dmat[i, j], ' ',
print
print
#-------------------------------------------------------------------------------
def calcCAdist(self, a, b):
return a['CA'] - b['CA']
#-------------------------------------------------------------------------------
def checkAlignmentThresholds(self, min_alignment_length = 50, min_pct_identity = 97):
self.hasMatch = False
for i in self.ccds_match:
if (i.ungapped_segment_length >= min_alignment_length) and (i.percent_identity >= min_pct_identity):
i.aboveThresholds = True
self.hasMatch = True
return self.hasMatch
#-------------------------------------------------------------------------------
class PDB_CCDS:
#-------------------------------------------------------------------------------
def __init__(self, id, seqs):
self.ccds_ID = id
self.ccds_AA = seqs[0]
self.ccds_DNA = seqs[1]
# { ccds_AA sequence index : [ ccds_AA_res, ccds_DNA_triplet, translated_AA ] }
# only exceptions are recorded
# To some extent this is redundant, because translation exceptions in the ungapped segment are
# now also recorded in mismatch_or_gap
self.translationExceptions = defaultdict(list)
self.checkSequences()
self.pdb_alignedAA = '' # CCDS specific, missing residues in structure gapped out after alignment
self.pdb_aligned_structure_AA = '' # as above but w. gaps for residues that are missing in the structure
self.ccds_alignedAA = ''
self.pdb_local_alignment_start = -1 # index, 0-based
self.ccds_local_alignment_start = -1 # AA sequence index, 0-based
self.local_alignment_length = 0
self.ungapped_segment_length = 0
self.ungapped_segment_start = -1 # index, 0-based
self.percent_identity = 0.0
# { aligned AA sequences offset : [ pdb_aa_res, ccds_aa_res, ccds_dna_triplet, ccds_dna_triplet_translation ] }
# the triplet translation should match the ccds_aa_res; else it should also be reflected in translationExceptions
self.mismatch_or_gap = defaultdict(list)
# Flag for selective printing of entries; all entries are sorted by seg length
# entries with equal seg lengths are ordered by percent identity
aboveThresholds = False
#-------------------------------------------------------------------------------
def checkSequences(self):
assert(len(self.ccds_AA)*3+3 == len(self.ccds_DNA)) # They all end with a stop codon
j = 0
for i in range(len(self.ccds_AA)):
aa_res = self.ccds_AA[i]
codon = self.ccds_DNA[j:j+3]
if universalCode[codon] != aa_res:
self.translationExceptions[i] = [ aa_res, codon, universalCode[codon] ]
j = j+3
#-------------------------------------------------------------------------------