Spaces:
Sleeping
Sleeping
Commit
·
d941939
1
Parent(s):
1182c1e
Update ASCARIS.py
Browse files- ASCARIS.py +3 -0
ASCARIS.py
CHANGED
@@ -12,6 +12,9 @@ from st_aggrid import AgGrid, GridOptionsBuilder, JsCode,GridUpdateMode
|
|
12 |
import base64
|
13 |
showWarningOnDirectExecution = False
|
14 |
|
|
|
|
|
|
|
15 |
def convert_df(df):
|
16 |
return df.to_csv(index=False).encode('utf-8')
|
17 |
|
|
|
12 |
import base64
|
13 |
showWarningOnDirectExecution = False
|
14 |
|
15 |
+
from huggingface_hub import hf_hub_download
|
16 |
+
path = hf_hub_download(repo_id="HuBioDataLab/AlphafoldStructures", filename="AF-A0A075B7D0-F1-model_v4.pdb.gz")
|
17 |
+
st.write(path)
|
18 |
def convert_df(df):
|
19 |
return df.to_csv(index=False).encode('utf-8')
|
20 |
|