Spaces:
Sleeping
Sleeping
fix: Create results directory again
Browse files
app.py
CHANGED
@@ -58,6 +58,10 @@ anchors = snapshot_download(
|
|
58 |
repo_id=f"funlab/{genome}_{digestion_enzyme}_anchor_bed", repo_type="dataset"
|
59 |
)
|
60 |
|
|
|
|
|
|
|
|
|
61 |
if st.button("Run Deeploop", type="primary"):
|
62 |
denoised_anchor_to_anchor = None
|
63 |
with st.spinner("Running the model"):
|
|
|
58 |
repo_id=f"funlab/{genome}_{digestion_enzyme}_anchor_bed", repo_type="dataset"
|
59 |
)
|
60 |
|
61 |
+
import os
|
62 |
+
|
63 |
+
os.makedirs(prefix, exist_ok=True)
|
64 |
+
|
65 |
if st.button("Run Deeploop", type="primary"):
|
66 |
denoised_anchor_to_anchor = None
|
67 |
with st.spinner("Running the model"):
|