Skip to content

Commit

Permalink
fix evaluation alpha key
Browse files Browse the repository at this point in the history
  • Loading branch information
meyerkm committed May 29, 2024
1 parent f56b90a commit 0dd831d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deeprvat/deeprvat/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def update_config(
else:
logger.info("Not performing EAC filtering of baseline results")
logger.info(f" Correcting p-values using {correction_method} method")
alpha = config["baseline_results"].get("alpha_seed_genes", config.get("alpha"))
alpha = config["baseline_results"].get("alpha_seed_genes", config["evaluation"].get("alpha"))
baseline_df = pval_correction(
baseline_df, alpha, correction_type=correction_method
)
Expand Down

0 comments on commit 0dd831d

Please sign in to comment.