Spaces:
Sleeping
Sleeping
Commit
·
9029142
1
Parent(s):
3ff8f0c
Update code/add_3Dalignment.py
Browse files- code/add_3Dalignment.py +4 -0
code/add_3Dalignment.py
CHANGED
@@ -304,6 +304,10 @@ def get_alignments_3D(identifier, model_num, pdb_path, pdbSequence, source, chai
|
|
304 |
aligner.substitution_matrix = substitution_matrices.load("BLOSUM62")
|
305 |
aligner.open_gap_score = -11
|
306 |
aligner.extend_gap_score = -1
|
|
|
|
|
|
|
|
|
307 |
alignments = aligner.align(pdbSequence, atomSequence)
|
308 |
alignments = (list(alignments))
|
309 |
|
|
|
304 |
aligner.substitution_matrix = substitution_matrices.load("BLOSUM62")
|
305 |
aligner.open_gap_score = -11
|
306 |
aligner.extend_gap_score = -1
|
307 |
+
print('HERE LASTLY')
|
308 |
+
print(pdbSequence)
|
309 |
+
print(atomSequence)
|
310 |
+
print(aligner.align(pdbSequence, atomSequence))
|
311 |
alignments = aligner.align(pdbSequence, atomSequence)
|
312 |
alignments = (list(alignments))
|
313 |
|