fatmacankara commited on
Commit
3fdd6f1
·
1 Parent(s): df9c34e

Update ASCARIS.py

Browse files
Files changed (1) hide show
  1. ASCARIS.py +2 -6
ASCARIS.py CHANGED
@@ -12,12 +12,8 @@ from st_aggrid import AgGrid, GridOptionsBuilder, JsCode,GridUpdateMode
12
  import base64
13
  showWarningOnDirectExecution = False
14
 
15
- from huggingface_hub import hf_hub_download
16
- path = hf_hub_download(repo_id="HuBioDataLab/AlphafoldStructures",repo_type = 'dataset', filename="AF-A0A075B7D0-F1-model_v4.pdb.gz")
17
- import gzip
18
- with gzip.open(path, 'rb') as f:
19
- file_content = f.read()
20
- st.write(file_content)
21
  def convert_df(df):
22
  return df.to_csv(index=False).encode('utf-8')
23
 
 
12
  import base64
13
  showWarningOnDirectExecution = False
14
 
15
+
16
+
 
 
 
 
17
  def convert_df(df):
18
  return df.to_csv(index=False).encode('utf-8')
19