diff --git a/sc_toolbox/api/calc/__init__.py b/sc_toolbox/api/calc/__init__.py index d571f3b..33ecac0 100644 --- a/sc_toolbox/api/calc/__init__.py +++ b/sc_toolbox/api/calc/__init__.py @@ -444,7 +444,7 @@ def extended_marker_table( all_markers.append(current) all_markers_df = pd.concat(all_markers) - all_markers_df = all_markers[all_markers_df.pval_adj < qval_thresh].copy() + all_markers_df = all_markers_df[all_markers_df.pval_adj < qval_thresh].copy() return all_markers_df