fatmacankara commited on
Commit
e6d21ab
·
1 Parent(s): d6533ab

Update code/alphafold_featureVector.py

Browse files
Files changed (1) hide show
  1. code/alphafold_featureVector.py +2 -0
code/alphafold_featureVector.py CHANGED
@@ -35,8 +35,10 @@ def getModelInfo(uniprotID, varPos, wt, models_we_need, path_to_output_files ):
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:
39
  pdb_path = hf_hub_download(repo_id="HuBioDataLab/AlphafoldStructures2", filename=f"AF-{uniprotID}-F{mod}-model_v4.pdb.gz",repo_type = 'dataset')
 
40
  except u.EntryNotFoundError:
41
  pdb_path = hf_hub_download(repo_id="HuBioDataLab/AlphafoldStructures3", filename=f"AF-{uniprotID}-F{mod}-model_v4.pdb.gz",repo_type = 'dataset')
42
 
 
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
+ st.write(pdb_path)
39
  except u.EntryNotFoundError:
40
  pdb_path = hf_hub_download(repo_id="HuBioDataLab/AlphafoldStructures2", filename=f"AF-{uniprotID}-F{mod}-model_v4.pdb.gz",repo_type = 'dataset')
41
+ st.write(pdb_path)
42
  except u.EntryNotFoundError:
43
  pdb_path = hf_hub_download(repo_id="HuBioDataLab/AlphafoldStructures3", filename=f"AF-{uniprotID}-F{mod}-model_v4.pdb.gz",repo_type = 'dataset')
44