fatmacankara commited on
Commit
2fb933b
·
1 Parent(s): 5f7f063

Update code/add_3Dalignment.py

Browse files
Files changed (1) hide show
  1. code/add_3Dalignment.py +2 -2
code/add_3Dalignment.py CHANGED
@@ -228,8 +228,8 @@ def get_alignments_3D(identifier, model_num, pdb_path, pdbSequence, source, chai
228
 
229
  atoms = [i.split() for i in atoms]
230
  atoms = [i for i in atoms if (i[2] == 'CA' and i[4] == chain)]
231
- print('I am the problem its me')
232
- print(atoms)
233
  atomSequence = ''.join([threeToOne(i[3]) for i in atoms])
234
  coords = [[i[6] ,i[7] ,i[8]] for i in atoms]
235
  resnums_for_sasa = [i[5] for i in atoms]
 
228
 
229
  atoms = [i.split() for i in atoms]
230
  atoms = [i for i in atoms if (i[2] == 'CA' and i[4] == chain)]
231
+ atoms = [[x[i][-3:] if i == 3 else x[i] for i in range(len(x))] for x in atoms]
232
+
233
  atomSequence = ''.join([threeToOne(i[3]) for i in atoms])
234
  coords = [[i[6] ,i[7] ,i[8]] for i in atoms]
235
  resnums_for_sasa = [i[5] for i in atoms]