Spaces:
Sleeping
Sleeping
Commit ·
e01f3f7
1
Parent(s): 48a30b6
Update ASCARIS.py
Browse files- ASCARIS.py +4 -8
ASCARIS.py
CHANGED
|
@@ -16,16 +16,12 @@ from huggingface_hub import hf_hub_download
|
|
| 16 |
import streamlit as st
|
| 17 |
import gzip
|
| 18 |
|
| 19 |
-
print('I AM HERE GOD DAMN IT')
|
| 20 |
-
st.write('I AM HERE GOD DAMN IT')
|
| 21 |
-
|
| 22 |
-
path = hf_hub_download(repo_id="HuBioDataLab/AlphafoldStructures", filename="AF-A0A075B6Y9-F1-model_v4.pdb.gz",repo_type = 'dataset')
|
| 23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
st.write(path)
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
pdb_path= hf_hub_download(repo_id="HuBioDataLab/AlphafoldStructures",repo_type = 'dataset', filename="AF-A0A075B6Y9-F1-model_v4.pdb.gz")
|
| 28 |
-
|
| 29 |
st.write('HER')
|
| 30 |
with gzip.open(pdb_path, mode="rt") as f:
|
| 31 |
file_content = f.read()
|
|
|
|
| 16 |
import streamlit as st
|
| 17 |
import gzip
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
+
mod = 1
|
| 21 |
+
name = 'A0A075B6Y9'
|
| 22 |
+
path = hf_hub_download(repo_id="HuBioDataLab/AlphafoldStructures", filename=f"AF-{name}-F{mod}-model_v4.pdb.gz",repo_type = 'dataset')
|
| 23 |
+
st.write('PATH')
|
| 24 |
st.write(path)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
st.write('HER')
|
| 26 |
with gzip.open(pdb_path, mode="rt") as f:
|
| 27 |
file_content = f.read()
|