fatmacankara commited on
Commit
f8c54bb
·
1 Parent(s): f5285f2

Update code/add_3Dalignment.py

Browse files
Files changed (1) hide show
  1. code/add_3Dalignment.py +4 -1
code/add_3Dalignment.py CHANGED
@@ -223,7 +223,6 @@ def get_alignments_3D(identifier, model_num, pdb_path, pdbSequence, source, chai
223
  if source == 'PDB':
224
  # Step 1: Fetch the PDB file
225
  pdb_url = f"https://files.rcsb.org/download/{pdbID}.pdb"
226
- print(pdb_url)
227
  response = requests.get(pdb_url)
228
  response.raise_for_status() # Check for a successful response
229
  # Step 2: Parse the PDB file from memory
@@ -266,6 +265,10 @@ def get_alignments_3D(identifier, model_num, pdb_path, pdbSequence, source, chai
266
  aligner.substitution_matrix = substitution_matrices.load("BLOSUM62")
267
  aligner.open_gap_score = -11
268
  aligner.extend_gap_score = -1
 
 
 
 
269
  alignments = aligner.align(pdbSequence, atomSequence)
270
  alignments = (list(alignments))
271
  print('IN FUNC')
 
223
  if source == 'PDB':
224
  # Step 1: Fetch the PDB file
225
  pdb_url = f"https://files.rcsb.org/download/{pdbID}.pdb"
 
226
  response = requests.get(pdb_url)
227
  response.raise_for_status() # Check for a successful response
228
  # Step 2: Parse the PDB file from memory
 
265
  aligner.substitution_matrix = substitution_matrices.load("BLOSUM62")
266
  aligner.open_gap_score = -11
267
  aligner.extend_gap_score = -1
268
+ print('I wanna sleep')
269
+ print(pdbSequence)
270
+ print(atomSequence)
271
+ print(aligner.align(pdbSequence, atomSequence))
272
  alignments = aligner.align(pdbSequence, atomSequence)
273
  alignments = (list(alignments))
274
  print('IN FUNC')