From bebc2cf49ff92dd47aa8e5083bf14579c309a4a6 Mon Sep 17 00:00:00 2001 From: Daniel Burkhardt Date: Mon, 24 Feb 2020 12:53:03 -0500 Subject: [PATCH] Fixing two_sample default noise_model default noise_model in the two_sample helper function now matches the docstring and other testing methods --- diffxpy/testing/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/diffxpy/testing/tests.py b/diffxpy/testing/tests.py index 582d3b1..a7f56a7 100644 --- a/diffxpy/testing/tests.py +++ b/diffxpy/testing/tests.py @@ -912,7 +912,7 @@ def two_sample( test: str = "t-test", gene_names: Union[np.ndarray, list] = None, sample_description: pd.DataFrame = None, - noise_model: str = None, + noise_model: str = "nb", size_factors: np.ndarray = None, batch_size: Union[None, int, Tuple[int, int]] = None, backend: str = "numpy",