Umair Khan commited on
Commit
9549ac6
·
1 Parent(s): 8cb988a

fix function call

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -229,7 +229,7 @@ def run_pipeline(fileobj, layer_choice, var_choice, obs_choice, batch_size=64):
229
 
230
  # compute UMAP
231
  color_series = adata.obs[obs_choice] if (obs_choice and obs_choice in adata.obs) else None
232
- coords = _compute_umap_from_emb(E, color_series)
233
 
234
  # plot UMAP
235
  import matplotlib.pyplot as plt
 
229
 
230
  # compute UMAP
231
  color_series = adata.obs[obs_choice] if (obs_choice and obs_choice in adata.obs) else None
232
+ coords = _compute_umap_from_emb(E)
233
 
234
  # plot UMAP
235
  import matplotlib.pyplot as plt