fatmacankara commited on
Commit
3d0b4c3
·
1 Parent(s): 60c9dfd

Update code/alphafold_featureVector.py

Browse files
Files changed (1) hide show
  1. code/alphafold_featureVector.py +2 -1
code/alphafold_featureVector.py CHANGED
@@ -30,8 +30,9 @@ from alphafold_model import *
30
  def getModelInfo(uniprotID, varPos, wt, models_we_need, path_to_output_files ):
31
  modelInfo = {}
32
  st.write(uniprotID)
33
- st.write(f"AF-{uniprotID}-F{mod}-model_v4.pdb.gz")
34
  for mod in models_we_need:
 
35
  try:
36
  pdb_path = hf_hub_download(repo_id="HuBioDataLab/AlphafoldStructures", filename=f"AF-{uniprotID}-F{mod}-model_v4.pdb.gz",repo_type = 'dataset')
37
  except u.EntryNotFoundError:
 
30
  def getModelInfo(uniprotID, varPos, wt, models_we_need, path_to_output_files ):
31
  modelInfo = {}
32
  st.write(uniprotID)
33
+
34
  for mod in models_we_need:
35
+ st.write(f"AF-{uniprotID}-F{mod}-model_v4.pdb.gz")
36
  try:
37
  pdb_path = hf_hub_download(repo_id="HuBioDataLab/AlphafoldStructures", filename=f"AF-{uniprotID}-F{mod}-model_v4.pdb.gz",repo_type = 'dataset')
38
  except u.EntryNotFoundError: