You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/methods_data_aggregation/aggregate_spatial_data/script.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@
60
60
##############
61
61
# Assertions #
62
62
##############
63
-
assertlen(sdata_transcripts["transcripts"]["cell_id"].unique()) in [adata.n_obs, adata.n_obs+1], "Number of cells in transcripts and adata do not match"
63
+
assertlen(sdata_transcripts["transcripts"]["cell_id"].unique()) >=adata.n_obs, "Number of cells in transcripts must be at least the number of cells in the adata"
0 commit comments