Spaces:
Sleeping
Sleeping
Commit
·
12e815f
1
Parent(s):
857efb5
Update ASCARIS.py
Browse files- ASCARIS.py +1 -7
ASCARIS.py
CHANGED
|
@@ -13,16 +13,10 @@ import base64
|
|
| 13 |
showWarningOnDirectExecution = False
|
| 14 |
|
| 15 |
from datasets import load_dataset
|
| 16 |
-
"""
|
| 17 |
-
# Replace 'dataset_name' with the name of the dataset you want to use
|
| 18 |
|
| 19 |
-
dataset = load_dataset('HUBioDataLab/AlphafoldStructures')
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
file_path = 'AF-A0A075B6Y9-F1-model_v4.cif.gz'
|
| 23 |
-
"""
|
| 24 |
import os
|
| 25 |
import zipfile
|
|
|
|
| 26 |
dataset_folder = 'HUBioDataLab/AlphafoldStructures' # Replace with the actual path to your dataset folder
|
| 27 |
query = 'AF-A0A075B6Y9-F1-model_v4.cif.gz' # Replace with the name of the zip file you want to access
|
| 28 |
zip_file_path = os.path.join(dataset_folder, query)
|
|
|
|
| 13 |
showWarningOnDirectExecution = False
|
| 14 |
|
| 15 |
from datasets import load_dataset
|
|
|
|
|
|
|
| 16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
import os
|
| 18 |
import zipfile
|
| 19 |
+
load_dataset("HUBioDataLab/AlphafoldStructures")
|
| 20 |
dataset_folder = 'HUBioDataLab/AlphafoldStructures' # Replace with the actual path to your dataset folder
|
| 21 |
query = 'AF-A0A075B6Y9-F1-model_v4.cif.gz' # Replace with the name of the zip file you want to access
|
| 22 |
zip_file_path = os.path.join(dataset_folder, query)
|