fix: underscore snakecase notation to hyphenated snakecase for diffexp-may-be-slow (#2687)

This commit is contained in:
Timmy Huang
2024-09-05 10:09:13 -07:00
committed by GitHub
parent 7bf5add6ef
commit c425d2e0b0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -176,7 +176,7 @@ class DatasetConfig(BaseConfig):
self.validate_correct_type_of_configuration_attribute("diffexp__top_n", int)
data_adaptor = self.get_data_adaptor()
if self.diffexp__enable and data_adaptor.parameters.get("diffexp_may_be_slow", False):
if self.diffexp__enable and data_adaptor.parameters.get("diffexp-may-be-slow", False):
context["messagefn"](
"CAUTION: due to the size of your dataset, " "running differential expression may take longer or fail."
)