Skip to content
This repository has been archived by the owner on Jan 6, 2024. It is now read-only.

Commit

Permalink
fix extended_marker_table
Browse files Browse the repository at this point in the history
Signed-off-by: zethson <[email protected]>
  • Loading branch information
Zethson committed May 27, 2021
1 parent 0a7d7d9 commit c197a56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sc_toolbox/api/calc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit c197a56

Please sign in to comment.