Spaces:
Sleeping
Sleeping
Commit
·
8d032e4
1
Parent(s):
eb42980
Update code/alphafold_featureVector.py
Browse files
code/alphafold_featureVector.py
CHANGED
@@ -211,7 +211,8 @@ def alphafold(input_set, mode, impute):
|
|
211 |
pdb_info = pd.read_csv(alphafold_summary, sep='\t')
|
212 |
st.write('PDB INFO')
|
213 |
st.write(pdb_info)
|
214 |
-
|
|
|
215 |
st.write(alphafold_path)
|
216 |
|
217 |
## Keeping how many models each AlphaFold structure has.
|
|
|
211 |
pdb_info = pd.read_csv(alphafold_summary, sep='\t')
|
212 |
st.write('PDB INFO')
|
213 |
st.write(pdb_info)
|
214 |
+
from huggingface_hub import snapshot_download
|
215 |
+
alphafold_path = snapshot_download(repo_id="HuBioDataLab/AlphafoldStructures",repo_type = 'dataset')
|
216 |
st.write(alphafold_path)
|
217 |
|
218 |
## Keeping how many models each AlphaFold structure has.
|