minwoosun commited on
Commit
f370249
·
verified ·
1 Parent(s): fd60fa3

fix default data

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 == "Default Dataset 1: PBMC 100 cells":
73
  input_file_path = default_dataset_1_path
74
- elif default_dataset == "Default Dataset 2: PBMC 1000 cells":
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
  ##############