fix default data
Browse files
app.py
CHANGED
@@ -69,9 +69,9 @@ def main(input_file_path, species, default_dataset):
|
|
69 |
default_dataset_2_path = hf_hub_download(repo_id="minwoosun/uce-misc", filename="1k_pbmcs_proc_subset.h5ad")
|
70 |
|
71 |
# If the user selects a default dataset, use that instead of the uploaded file
|
72 |
-
if default_dataset == "
|
73 |
input_file_path = default_dataset_1_path
|
74 |
-
elif default_dataset == "
|
75 |
input_file_path = default_dataset_2_path
|
76 |
|
77 |
##############
|
|
|
69 |
default_dataset_2_path = hf_hub_download(repo_id="minwoosun/uce-misc", filename="1k_pbmcs_proc_subset.h5ad")
|
70 |
|
71 |
# If the user selects a default dataset, use that instead of the uploaded file
|
72 |
+
if default_dataset == "PBMC 100 cells":
|
73 |
input_file_path = default_dataset_1_path
|
74 |
+
elif default_dataset == "PBMC 1000 cells":
|
75 |
input_file_path = default_dataset_2_path
|
76 |
|
77 |
##############
|