Update app.py
Browse files
app.py
CHANGED
|
@@ -89,7 +89,7 @@ def main(input_file_path, species):
|
|
| 89 |
file_name = os.path.splitext(file_name_with_ext)[0]
|
| 90 |
output_file = "/home/user/app/UCE/" + f"{file_name}_uce_adata.h5ad"
|
| 91 |
|
| 92 |
-
adata = sc.read_h5ad(
|
| 93 |
|
| 94 |
labels = pd.Categorical(adata.obs["cell_type"])
|
| 95 |
|
|
|
|
| 89 |
file_name = os.path.splitext(file_name_with_ext)[0]
|
| 90 |
output_file = "/home/user/app/UCE/" + f"{file_name}_uce_adata.h5ad"
|
| 91 |
|
| 92 |
+
adata = sc.read_h5ad(output_file)
|
| 93 |
|
| 94 |
labels = pd.Categorical(adata.obs["cell_type"])
|
| 95 |
|